.align-wrapper-1fe5d670 {
    --primary-green: #063B2D;
    --deep-green: #052F25;
    --cream-bg: #F5F2EA;
    --accent-gold: #C99632;
    --dark-text: #123B31;
    --muted-text: #66665F;
    --border-color: #C9C7BE;
    font-family: 'Inter', 'Manrope', 'DM Sans', sans-serif;
    background-color: var(--cream-bg);
    overflow: hidden;
    color: var(--dark-text);
}

/* Header style */
.header-1fe5d670 {
    background-color: var(--primary-green);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-1fe5d670 .logo-1fe5d670 {
    font-family: serif;
    color: #ffffff;
    font-size: 28px;
    font-weight: normal;
}
.header-right-1fe5d670 {
    display: flex;
    align-items: center;
    gap: 30px;
}
.partner-link-1fe5d670 {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}
.donate-btn-1fe5d670 {
    background-color: var(--accent-gold);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.donate-btn-1fe5d670:hover {
    transform: translateY(-2px);
    background-color: #b08125;
}

/* Hero split style */
.hero-split-1fe5d670 {
    display: grid;
    grid-template-columns: 54% 46%;
    min-height: 500px;
}
.hero-left-1fe5d670 {
    padding: 60px 5% 60px 40px;
    background-color: var(--cream-bg);
}
.hero-right-1fe5d670 {
    position: relative;
    background-color: #e5e5e5;
}
.hero-main-img-1fe5d670 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero content labels */
.hero-eyebrow-1fe5d670 {
    color: var(--accent-gold);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.hero-title-1fe5d670 {
    color: var(--primary-green);
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 35px 0;
}

/* Pills container */
.pills-container-1fe5d670 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
}
.pill-1fe5d670 {
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    background: transparent;
    color: var(--dark-text);
    transition: all 0.3s ease;
    cursor: default;
}
.pill-1fe5d670:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}
.pill-dot-1fe5d670 {
    color: var(--border-color);
    margin: 0 5px;
}

/* Explore grid layout */
.explore-section-1fe5d670 {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}
.explore-header-1fe5d670 {
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 0 0 25px 0;
}
.explore-grid-1fe5d670 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
}
.explore-item-container-1fe5d670 {
    border-bottom: 1px solid var(--border-color);
}
.explore-item-trigger-1fe5d670 {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}
.nav-number-1fe5d670 {
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
}
.nav-title-1fe5d670 {
    color: var(--dark-text);
    font-size: 18px;
    font-weight: 600;
    flex-grow: 1;
}
.nav-arrow-1fe5d670 {
    color: var(--muted-text);
    transition: transform 0.3s ease;
}
.explore-item-container-1fe5d670.active .nav-arrow-1fe5d670 {
    transform: rotate(180deg);
}

/* Submenu block */
.explore-submenu-1fe5d670 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}
.explore-item-container-1fe5d670.active .explore-submenu-1fe5d670 {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}
.submenu-list-1fe5d670 {
    list-style: none;
    padding: 0 0 15px 32px;
    margin: 0;
}
.submenu-list-1fe5d670 li {
    margin-bottom: 8px;
}
.submenu-list-1fe5d670 li a {
    color: var(--muted-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.submenu-list-1fe5d670 li a:hover {
    color: var(--accent-gold);
}

/* Approach section */
.approach-section-1fe5d670 {
    padding: 40px;
    background-color: var(--cream-bg);
}
.approach-title-divider-1fe5d670 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.approach-section-line-1fe5d670 {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
}
.approach-header-1fe5d670 {
    margin: 0 20px;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--muted-text);
    font-weight: 700;
}
.approach-pillars-1fe5d670 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.approach-item-1fe5d670 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 1px;
}
.approach-divider-bar-1fe5d670 {
    color: var(--border-color);
}

/* Footer style */
.footer-section-1fe5d670 {
    background-color: var(--primary-green);
    padding: 50px 40px 30px 40px;
    color: #ffffff;
}
.footer-top-1fe5d670 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-left: 1px solid var(--border-color);
    padding-left: 30px;
}
.footer-label-1fe5d670 {
    color: var(--accent-gold);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
.contact-info-list-1fe5d670 {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list-1fe5d670 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #eeeeee;
    font-size: 14px;
}
.footer-icon-1fe5d670 {
    color: var(--accent-gold);
}
.socials-container-1fe5d670 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.social-link-1fe5d670 {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.2s ease;
}
.social-link-1fe5d670:hover {
    opacity: 0.7;
}
.social-divider-1fe5d670 {
    color: var(--border-color);
}

.footer-bottom-divider-1fe5d670 {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}
.footer-bottom-1fe5d670 {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #cccccc;\n}\n.legal-links-container-1fe5d670 {\n    display: flex;\n    gap: 15px;\n}\n.legal-link-1fe5d670 {\n    color: #cccccc;\n    text-decoration: none;\n}\n.legal-link-1fe5d670:hover {\n    color: #ffffff;\n}\n.legal-divider-1fe5d670 {\n    color: rgba(255,255,255,0.2);\n}\n\n/* Tablet & Mobile responsive */\n@media (max-width: 991px) {\n    .hero-split-1fe5d670 {\n        grid-template-columns: 1fr;\n    }\n    .hero-left-1fe5d670 {\n        padding: 40px 25px;\n    }\n    .hero-right-1fe5d670 {\n        height: 350px;\n    }\n}\n\n@media (max-width: 767px) {\n    .header-1fe5d670 {\n        padding: 15px 20px;\n    }\n    .header-right-1fe5d670 {\n        gap: 15px;\n    }\n    .hero-title-1fe5d670 {\n        font-size: 32px;\n    }\n    .explore-grid-1fe5d670 {\n        grid-template-columns: 1fr;\n    }\n    .approach-pillars-1fe5d670 {\n        flex-direction: column;\n        gap: 15px;\n    }\n    .approach-divider-bar-1fe5d670 {\n        display: none;\n    }\n    .footer-top-1fe5d670 {\n        grid-template-columns: 1fr;\n        gap: 40px;\n        border-left: none;\n        padding-left: 0;\n    }\n    .footer-bottom-1fe5d670 {\n        flex-direction: column;\n        gap: 15px;\n    }\n}\n