* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: #000000;
    padding: 1.5rem 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 120px;
    }
}

@media (max-width: 968px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #000000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay {
        display: block;
    }
    
    .nav-overlay.active {
        opacity: 1;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #333333;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 24px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-menu {
        width: 100%;
        max-width: 100%;
        right: -100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.hero-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 120px;
    padding-left: 200px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
}

.hero-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #b8d4e3;
    color: #2d3748;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    background-color: #a8c4d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 212, 227, 0.4);
}

.hero-image {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 80px;
        padding-left: 120px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        order: -1;
        height: 50vh;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 40px 24px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 0.875rem 2rem;
        width: 100%;
    }
    
    .hero-image {
        height: 40vh;
    }
}

/* What is Human Inclusion Section */
.what-is-section {
    background-color: #ffffff;
    padding: 120px 200px;
}

.what-is-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.what-is-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.what-is-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.what-is-intro {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
}

.what-is-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-is-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.what-is-description {
    max-width: 80%;
    margin: 0 auto;
}

.what-is-description p {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
    text-align: center;
}

/* Responsive for What is Section */
@media (max-width: 1200px) {
    .what-is-section {
        padding: 80px 120px;
    }
    
    .what-is-header {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .what-is-section {
        padding: 60px 40px;
    }
    
    .what-is-container {
        gap: 3rem;
    }
    
    .what-is-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .what-is-title {
        font-size: 2rem;
    }
    
    .what-is-intro {
        font-size: 1.1rem;
    }
    
    .what-is-description {
        max-width: 100%;
    }
    
    .what-is-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .what-is-section {
        padding: 40px 24px;
    }
    
    .what-is-container {
        gap: 2rem;
    }
    
    .what-is-title {
        font-size: 1.75rem;
    }
    
    .what-is-intro {
        font-size: 1rem;
    }
    
    .what-is-description p {
        font-size: 1rem;
    }
}

/* Methodology Section */
.methodology-section {
    background-color: #ffffff;
    padding: 120px 200px;
}

.methodology-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.methodology-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 80%;
}

.methodology-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.methodology-headline {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.methodology-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.methodology-item {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-item-1 {
    background-color: #92c4df;
    border-radius: 12px 0 0 0;
}

.methodology-item-2 {
    background-color: #af89d4;
    border-radius: 0 12px 0 0;
}

.methodology-item-3 {
    background-color: #ffdd49;
    grid-column: span 2;
    border-radius: 0 0 12px 12px;
}


.methodology-item-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.01em;
}

.methodology-item-description {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.7;
}

/* Responsive for Methodology Section */
@media (max-width: 1200px) {
    .methodology-section {
        padding: 80px 120px;
    }
    
    .methodology-header {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .methodology-section {
        padding: 60px 40px;
    }
    
    .methodology-container {
        gap: 3rem;
    }
    
    .methodology-items {
        grid-template-columns: 1fr;
    }
    
    .methodology-item-3 {
        grid-column: span 1;
    }
    
    .methodology-item-1{
        border-radius: 12px 12px 0 0;
    }
    .methodology-item-2{
        border-radius: 0px;
    }
    .methodology-item-3 {
        border-radius: 0 0 12px 12px;
    }
    
    .methodology-title {
        font-size: 2rem;
    }
    
    .methodology-headline {
        font-size: 1.1rem;
    }
    
    .methodology-item {
        padding: 2rem;
    }
    
    .methodology-item-title {
        font-size: 1.5rem;
    }
    
    .methodology-item-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .methodology-section {
        padding: 40px 24px;
    }
    
    .methodology-container {
        gap: 2rem;
    }
    
    .methodology-title {
        font-size: 1.75rem;
    }
    
    .methodology-headline {
        font-size: 1rem;
    }
    
    .methodology-item {
        padding: 1.5rem;
    }
    
    .methodology-item-title {
        font-size: 1.25rem;
    }
    
    .methodology-item-description {
        font-size: 0.95rem;
    }
}

/* Certification Section */
.certification-section {
    background-color: #ffffff;
}

.certification-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.certification-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.certification-text {
    font-size: 1.1rem;
    color: #718096;
    text-align: center;
    line-height: 1.6;
}

/* Responsive for Certification Section */
@media (max-width: 1200px) {
    .certification-section {
        padding: 60px 120px;
    }
}

@media (max-width: 968px) {
    .certification-section {
        padding: 40px 40px;
    }
    
    .certification-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .certification-section {
        padding: 40px 24px;
    }
    
    .certification-logo {
        width: 120px;
        height: 120px;
    }
    
    .certification-text {
        font-size: 0.95rem;
    }
}

/* Logos Section */
.logos-section {
    background-color: #92c4df;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
}

.logos-container {
    width: 100%;
    overflow: hidden;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for Logos Section */
@media (max-width: 968px) {
    .logos-section {
        padding: 30px 0;
    }
    
    .logos-track {
        gap: 3rem;
    }
    
    .logo-item {
        height: 50px;
    }
    
    .logo-item img {
        max-height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 640px) {
    .logos-section {
        padding: 25px 0;
    }
    
    .logos-track {
        gap: 2rem;
    }
    
    .logo-item {
        height: 40px;
    }
    
    .logo-item img {
        max-height: 35px;
        max-width: 80px;
    }
}

/* Power of Inclusion Section */
.power-section {
    background-color: #ffffff;
    padding: 80px 200px;
}

.power-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.power-header {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.power-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.power-subtitle {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.power-description {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.power-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.power-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.power-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.power-card-bg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.power-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.power-card-label {
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    margin: 0;
}

.power-card-number {
    font-size: 4rem;
    font-weight: 700;
    color: #222;
    margin: 0.5rem 0;
    line-height: 1;
}

.power-card-text {
    font-size: 1.1rem;
    color: #222;
    font-weight: 500;
    margin: 0;
}

/* Responsive for Power Section */
@media (max-width: 1200px) {
    .power-section {
        padding: 80px 120px;
    }
    
    .power-header {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .power-section {
        padding: 60px 40px;
    }
    
    .power-container {
        gap: 3rem;
    }
    
    .power-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .power-card {
        height: 350px;
    }
    
    .power-title {
        font-size: 2rem;
    }
    
    .power-subtitle,
    .power-description {
        font-size: 1.1rem;
    }
    
    .power-card-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    .power-section {
        padding: 40px 24px;
    }
    
    .power-container {
        gap: 2rem;
    }
    
    .power-title {
        font-size: 1.75rem;
    }
    
    .power-subtitle,
    .power-description {
        font-size: 1rem;
    }
    
    .power-card {
        height: 300px;
    }
    
    .power-card-number {
        font-size: 3rem;
    }
    
    .power-card-text {
        font-size: 1rem;
    }
}

/* Numbers Section */
.numbers-section {
    position: relative;
    padding: 120px 200px;
    overflow: hidden;
}

.numbers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.numbers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.numbers-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.numbers-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.numbers-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.numbers-headline {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.numbers-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.numbers-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.numbers-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin: 0;
}

.numbers-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    letter-spacing: -0.01em;
}

.numbers-card-description {
    font-size: 1rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Numbers Section */
@media (max-width: 1200px) {
    .numbers-section {
        padding: 80px 120px;
    }
}

@media (max-width: 968px) {
    .numbers-section {
        padding: 60px 40px;
    }
    
    .numbers-container {
        gap: 3rem;
    }
    
    .numbers-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .numbers-title {
        font-size: 2rem;
    }
    
    .numbers-headline {
        font-size: 1.1rem;
    }
    
    .numbers-value {
        font-size: 3rem;
    }
    
    .numbers-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .numbers-section {
        padding: 40px 24px;
    }
    
    .numbers-container {
        gap: 2rem;
    }
    
    .numbers-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .numbers-title {
        font-size: 1.75rem;
    }
    
    .numbers-headline {
        font-size: 1rem;
    }
    
    .numbers-card {
        padding: 2rem;
    }
    
    .numbers-value {
        font-size: 2.5rem;
    }
    
    .numbers-card-title {
        font-size: 1.1rem;
    }
    
    .numbers-card-description {
        font-size: 0.95rem;
    }
}

/* Solutions Section */
.solutions-section {
    background-color: #ffffff;
    padding: 120px 200px;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.solutions-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.solutions-subtitle {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.solutions-description {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.solutions-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.tab-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #718096;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -1rem;
    position: relative;
}

.tab-button:hover {
    color: #222;
}

.tab-button.active {
    color: #222;
    border-bottom-color: #92c4df;
}

.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.tab-panel.active {
    display: flex;
}

.tab-panel-title {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}

.tab-panel-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

.tab-panel-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #92c4df;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.tab-panel-button:hover {
    background-color: #82b4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 196, 223, 0.4);
}

/* Responsive for Solutions Section */
@media (max-width: 1200px) {
    .solutions-section {
        padding: 80px 120px;
    }
    
    .solutions-header {
        max-width: 100%;
    }
}

@media (max-width: 968px) {
    .solutions-section {
        padding: 60px 40px;
    }
    
    .solutions-container {
        gap: 3rem;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin-bottom: -1rem;
    }
    
    .solutions-title {
        font-size: 2rem;
    }
    
    .solutions-subtitle,
    .solutions-description {
        font-size: 1.1rem;
    }
    
    .tab-panel-title {
        font-size: 1.75rem;
    }
    
    .tab-panel-description {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .solutions-section {
        padding: 40px 24px;
    }
    
    .solutions-container {
        gap: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
        border-bottom: 2px solid #e2e8f0;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom-color: #e2e8f0;
        border-left-color: #92c4df;
    }
    
    .solutions-title {
        font-size: 1.75rem;
    }
    
    .solutions-subtitle,
    .solutions-description {
        font-size: 1rem;
    }
    
    .tab-panel {
        padding: 1.5rem 0;
    }
    
    .tab-panel-title {
        font-size: 1.5rem;
    }
    
    .tab-panel-description {
        font-size: 0.95rem;
    }
    
    .tab-panel-button {
        width: 100%;
    }
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 120px 200px;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.25rem;
    color: #222;
    line-height: 1.7;
}

.cta-subdescription {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #92c4df;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #82b4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 196, 223, 0.4);
}

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Responsive for CTA Section */
@media (max-width: 1200px) {
    .cta-section {
        padding: 80px 120px;
    }
}

@media (max-width: 968px) {
    .cta-section {
        padding: 60px 40px;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content {
        padding-right: 0;
        order: 2;
    }
    
    .cta-image {
        order: 1;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-subdescription {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-subdescription {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        width: 100%;
    }
}

/* Contact Form Section */
.contact-section {
    background-color: #ffffff;
    padding: 120px 200px;
    scroll-margin-top: 80px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #92c4df;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #92c4df;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.form-submit-button:hover {
    background-color: #82b4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 196, 223, 0.4);
}

/* Responsive for Contact Section */
@media (max-width: 1200px) {
    .contact-section {
        padding: 80px 120px;
    }
}

@media (max-width: 968px) {
    .contact-section {
        padding: 60px 40px;
    }
    
    .contact-container {
        gap: 2.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 40px 24px;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-submit-button {
        width: 100%;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 200px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-content: center;
  align-items: center;

}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-registration {
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
}

.footer-address {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.footer-phone {
    font-size: 0.95rem;
    color: #cccccc;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer {
        padding: 60px 120px 30px;
    }
}

@media (max-width: 968px) {
    .footer {
        padding: 40px 40px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 24px 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-registration,
    .footer-address,
    .footer-phone {
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    padding: 140px 200px 100px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: #369bd1;
    top: -100px;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: #8038c9;
    bottom: -50px;
    left: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: #f8d020;
    top: 50%;
    right: 5%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    text-align: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #718096;
    text-align: center;
    line-height: 1.4;
}

.about-content {
    background-color: #ffffff;
    padding: 80px 200px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-approach {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 12px;
}

.approach-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.approach-text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
}

.about-cta {
    background-color: #f7fafc;
    padding: 80px 200px;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-cta-text {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #92c4df;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.about-cta-button:hover {
    background-color: #82b4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 196, 223, 0.4);
}

/* Responsive for About Page */
@media (max-width: 1200px) {
    .about-hero {
        padding: 120px 120px 80px;
    }
    
    .circle-1 {
        width: 250px;
        height: 250px;
    }
    
    .circle-2 {
        width: 180px;
        height: 180px;
    }
    
    .circle-3 {
        width: 130px;
        height: 130px;
    }
    
    .about-content {
        padding: 60px 120px;
    }
    
    .about-cta {
        padding: 60px 120px;
    }
}

@media (max-width: 968px) {
    .about-hero {
        padding: 100px 40px 60px;
        min-height: 450px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 60px 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-approach {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta {
        padding: 60px 40px;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 80px 24px 40px;
        min-height: 400px;
    }
    
    .circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .circle-3 {
        width: 100px;
        height: 100px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .about-hero-stats {
        margin-top: 2rem;
    }
    
    .about-stat {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .about-content {
        padding: 40px 24px;
    }
    
    .about-section {
        margin-bottom: 3rem;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .approach-item {
        padding: 1.5rem;
    }
    
    .approach-title {
        font-size: 1.25rem;
    }
    
    .approach-text {
        font-size: 0.95rem;
    }
    
    .about-cta {
        padding: 40px 24px;
    }
    
    .about-cta-title {
        font-size: 1.75rem;
    }
    
    .about-cta-text {
        font-size: 1rem;
    }
    
    .about-cta-button {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-page-section {
    background-color: #ffffff;
    padding: 120px 200px;
    min-height: calc(100vh - 200px);
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-page-title {
    font-size: 3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-page-subtitle {
    font-size: 1.25rem;
    color: #718096;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.contact-info-text {
    font-size: 1rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-page-submit-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #92c4df;
    color: #222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.contact-page-submit-button:hover {
    background-color: #82b4cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 196, 223, 0.4);
}

/* Responsive for Contact Page */
@media (max-width: 1200px) {
    .contact-page-section {
        padding: 100px 120px;
    }
}

@media (max-width: 968px) {
    .contact-page-section {
        padding: 80px 40px;
    }
    
    .contact-page-title {
        font-size: 2.5rem;
    }
    
    .contact-page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .contact-page-section {
        padding: 60px 24px;
    }
    
    .contact-page-title {
        font-size: 2rem;
    }
    
    .contact-page-subtitle {
        font-size: 1rem;
    }
    
    .contact-page-content {
        gap: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-info-label {
        font-size: 1rem;
    }
    
    .contact-info-text {
        font-size: 0.95rem;
    }
    
    .contact-page-submit-button {
        width: 100%;
    }
}

/* Privacy Policy & Terms Page Styles */
.policy-hero {
    background-color: #ffffff;
    padding: 120px 200px 60px;
    text-align: center;
}

.policy-hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.policy-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.policy-hero-subtitle {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
}

.policy-content {
    background-color: #ffffff;
    padding: 60px 200px 120px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-title {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.policy-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-list {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-list li {
    margin-bottom: 0.75rem;
}

.policy-contact {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.policy-link {
    color: #92c4df;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #82b4cd;
    text-decoration: underline;
}

/* Responsive for Policy Pages */
@media (max-width: 1200px) {
    .policy-hero {
        padding: 100px 120px 50px;
    }
    
    .policy-content {
        padding: 50px 120px 100px;
    }
}

@media (max-width: 968px) {
    .policy-hero {
        padding: 80px 40px 40px;
    }
    
    .policy-hero-title {
        font-size: 2.5rem;
    }
    
    .policy-content {
        padding: 40px 40px 80px;
    }
    
    .policy-title {
        font-size: 1.75rem;
    }
    
    .policy-subtitle {
        font-size: 1.25rem;
    }
    
    .policy-text,
    .policy-list {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .policy-hero {
        padding: 60px 24px 30px;
    }
    
    .policy-hero-title {
        font-size: 2rem;
    }
    
    .policy-hero-subtitle {
        font-size: 1rem;
    }
    
    .policy-content {
        padding: 30px 24px 60px;
    }
    
    .policy-section {
        margin-bottom: 2.5rem;
    }
    
    .policy-title {
        font-size: 1.5rem;
    }
    
    .policy-subtitle {
        font-size: 1.1rem;
    }
    
    .policy-text,
    .policy-list {
        font-size: 0.95rem;
    }
    
    .policy-list {
        padding-left: 1.5rem;
    }
    
    .policy-contact {
        padding: 1.5rem;
    }
}

