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

body {
    font-family: "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #40493D;
    background-color: #F9FBF9;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    height: 100%;
    width: min(1001px, calc(100% - 120px));
    margin: 0 auto;
}

.hero-title {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 70px;
    color: #FFFFFF;
    letter-spacing: -0.014em;
    margin-bottom: 58px;
    text-align: left;
}

.highlight-text {
    color: #ABF4AC;
}

.hero-description {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 38px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    max-width: 828px;
}

.branding-section {
    background-color: #F4FAFF;
    padding: 72px 0;
    border-bottom: 1.5px solid rgba(191, 202, 186, 0.2);
}

.branding-content {
    max-width: 1280px;
    margin: 0 auto;
}

.branding-text {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 39px;
    color: #40493D;
    text-align: justify;
}

.empowering-section {
    background-color: #FFFFFF;
    padding: 144px 0;
}

.empowering-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 96px;
}

.empowering-image-container {
    flex: 0 0 576px;
}

.empowering-image-wrapper {
    background: rgba(255, 255, 255, 0);
    border: 1.5px solid #E5E7EB;
    border-radius: 36px;
    box-shadow: 0px 37.5px 75px -18px rgba(0, 0, 0, 0.25);
    padding: 0;
    overflow: hidden;
}

.empowering-image {
    display: block;
    width: 100%;
    height: 636px;
    object-fit: cover;
}

.empowering-text-container {
    flex: 0 0 576px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.empowering-title {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    color: #0D631B;
}

.empowering-description {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 39px;
    color: #40493D;
    text-align: left;
}

.cta-section {
    background-color: #2E7D32;
    padding: 120px 0;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-text {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 42px;
    color: #FFFFFF;
    text-align: center;
    max-width: 1360px;
    opacity: 0.9;
}

.footer {
    background-color: #23333A;
    padding: 96px 0;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 72px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-bottom: 30px;
}

.footer-title {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    color: #CBFFC2;
}

.footer-description {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 66px;
    color: #D4E5EF;
    opacity: 0.8;
    max-width: 576px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.footer-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-link svg {
    width: 16.67px;
    height: 16.67px;
}

.footer-border {
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    padding-top: 48px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.language-selector {
    display: flex;
    gap: 24px;
}

.language-option {
    font-family: "PingFang SC", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22.5px;
    color: #D4E5EF;
    padding: 6px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option:nth-child(2) {
    font-family: "Nimbus Sans", sans-serif;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
        line-height: 54px;
    }

    .hero-description {
        font-size: 20px;
        line-height: 32px;
    }

    .empowering-content {
        flex-direction: column;
        gap: 48px;
    }

    .empowering-image-container {
        flex: 0 0 auto;
        width: 100%;
    }

    .empowering-image {
        height: 400px;
    }

    .empowering-text-container {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .hero-section {
        height: 600px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 36px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .branding-section {
        padding: 48px 0;
    }

    .branding-text {
        font-size: 18px;
        line-height: 28px;
    }

    .empowering-section {
        padding: 72px 0;
    }

    .empowering-title {
        font-size: 32px;
        line-height: 40px;
    }

    .empowering-description {
        font-size: 18px;
        line-height: 28px;
    }

    .empowering-image {
        height: 300px;
    }

    .cta-section {
        padding: 72px 0;
    }

    .cta-text {
        font-size: 18px;
        line-height: 28px;
    }

    .footer {
        padding: 48px 0;
    }

    .footer-content {
        padding: 0 30px;
        gap: 48px;
    }

    .footer-title {
        font-size: 24px;
        line-height: 32px;
    }

    .footer-description {
        font-size: 18px;
        line-height: 28px;
    }

    .footer-border {
        justify-content: center;
    }
}
