/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Top Utility Navigation Header */
.top-utility-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    width: 100%;
    padding: 0;
}

.nav-container {
    display: flex;
    gap: 24px;
    height: 37px;
    align-items: center;
    justify-content: flex-end;
    padding: 0 159px;
    max-width: 1470px;
    margin: 0 auto;
}

.nav-link {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: -0.1504px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #000000;
}

.nav-link-cart {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

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

@media (max-width: 992px) {
    .nav-container {
        padding: 0 40px;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        gap: 16px;
        flex-wrap: wrap;
        height: auto;
        min-height: 37px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .nav-link:last-child {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 16px;
        gap: 12px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    /* Hide some links on very small screens, or show as icons only */
    .nav-link:not(.nav-link-cart) {
        display: none;
    }
    
    .nav-link-cart {
        margin-left: auto;
    }
}

/* Alternative: Show abbreviated text on small screens */
@media (max-width: 480px) {
    .nav-link {
        font-size: 10px;
    }
    
    /* Optionally show all links but with smaller text */
    .nav-link:not(.nav-link-cart) {
        display: inline-flex;
    }
}

/* Main Navigation Header */
.main-navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
    width: 100%;
    padding: 0;
}

.main-nav-container {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    padding: 0 159px;
    max-width: 1470px;
    margin: 0 auto;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    height: 64px;
    text-decoration: none;
}

.logo-image {
    width: 188.523px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.main-nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    height: 48px;
}

.main-nav-link {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.4375px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.main-nav-link:hover {
    color: #000000;
}

.donate-button {
    background-color: #1b4489;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.4375px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.donate-button:hover {
    background-color: #153a75;
}

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

@media (max-width: 992px) {
    .main-nav-container {
        padding: 0 40px;
    }
    
    .main-nav-links {
        gap: 24px;
    }
    
    .main-nav-link {
        font-size: 15px;
    }
    
    .donate-button {
        font-size: 15px;
        padding: 10px 20px;
    }
    
    .logo-image {
        width: 150px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .main-nav-container {
        padding: 0 20px;
        height: auto;
        min-height: 80px;
        flex-wrap: wrap;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    .main-nav-links {
        gap: 16px;
        width: 100%;
        justify-content: flex-end;
        margin-top: 8px;
    }
    
    .main-nav-link {
        font-size: 14px;
    }
    
    .donate-button {
        font-size: 14px;
        padding: 10px 18px;
        height: 40px;
    }
    
    .logo-link {
        height: auto;
    }
    
    .logo-image {
        width: 140px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .main-nav-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .main-nav-links {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0;
    }
    
    .main-nav-link {
        font-size: 13px;
    }
    
    .donate-button {
        font-size: 13px;
        padding: 8px 16px;
        height: 36px;
    }
    
    .logo-image {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .main-nav-links {
        gap: 8px;
    }
    
    .main-nav-link {
        font-size: 12px;
    }
    
    .donate-button {
        font-size: 12px;
        padding: 8px 14px;
        height: 34px;
    }
    
    .logo-image {
        width: 100px;
    }
}

/* HeroSection */
.hero-section {
    background-color: #ffffff;
    width: 100%;
    min-height: 697.961px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 64px 159px 0;
    gap: 64px;
    max-width: 1470px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 552px;
    padding-top: 130px;
}

.hero-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.hero-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #276f85;
    letter-spacing: 0.0508px;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-button {
    background-color: #276f85;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.hero-button:hover {
    background-color: #1e5a6b;
}

.hero-image {
    flex: 1;
    max-width: 448px;
    height: 585.961px;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* HeroSection Responsive */
@media (max-width: 1200px) {
    .hero-section {
        padding: 64px 80px 0;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 64px 40px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        padding-top: 40px;
        max-width: 100%;
    }
    
    .hero-heading {
        font-size: 40px;
        line-height: 48px;
    }
    
    .hero-paragraph {
        font-size: 18px;
    }
    
    .hero-image {
        max-width: 100%;
        height: auto;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-paragraph {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-paragraph {
        font-size: 14px;
    }
    
    .hero-button {
        font-size: 14px;
        padding: 10px 20px;
        height: 44px;
    }
}

/* MissionSection */
.mission-section {
    background-color: #ffffff;
    width: 100%;
    min-height: 482px;
    display: flex;
    padding: 64px 159px;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1470px;
    margin: 0 auto;
}

.mission-content {
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.mission-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    letter-spacing: 0.0508px;
    margin: 0;
}

.mission-button {
    background-color: #ffffff;
    border: 2px solid #276f85;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mission-button:hover {
    background-color: #276f85;
    color: #ffffff;
}

.mission-button .button-icon {
    width: 20px;
    height: 20px;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 544px;
    flex: 1;
}

.stat-card {
    background-color: #ffffff;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #1b4489;
    letter-spacing: -0.6289px;
}

.stat-underline {
    width: 60px;
    height: 4px;
    background-color: #d78b3b;
}

.stat-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    letter-spacing: 0.1875px;
    margin: 0;
}

/* MissionSection Responsive */
@media (max-width: 1200px) {
    .mission-section {
        padding: 64px 80px;
    }
}

@media (max-width: 992px) {
    .mission-section {
        flex-direction: column;
        padding: 64px 40px;
        gap: 48px;
    }
    
    .mission-content {
        max-width: 100%;
    }
    
    .mission-stats {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 48px 20px;
    }
    
    .mission-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .mission-paragraph {
        font-size: 18px;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .mission-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .mission-paragraph {
        font-size: 16px;
        line-height: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* EducationalProgramsSection */
.programs-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1470px;
    margin: 0 auto;
}

.programs-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    text-align: center;
    margin: 0;
}

.programs-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #333333;
    letter-spacing: 0.0605px;
    text-align: center;
    margin: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1152px;
}

.program-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-image {
    width: 100%;
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #d9d9d9;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.program-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    letter-spacing: -0.4492px;
    text-align: center;
    margin: 0;
}

.program-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    letter-spacing: 0.3496px;
    text-align: center;
    margin: 0;
}

.programs-button {
    background-color: #ffffff;
    border: 2px solid #276f85;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.programs-button:hover {
    background-color: #276f85;
    color: #ffffff;
}

.programs-button .button-icon {
    width: 20px;
    height: 20px;
}

/* EducationalProgramsSection Responsive */
@media (max-width: 1200px) {
    .programs-section {
        padding: 96px 80px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .programs-section {
        padding: 80px 40px;
    }
    
    .programs-heading {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (max-width: 768px) {
    .programs-section {
        padding: 64px 20px;
        gap: 32px;
    }
    
    .programs-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .programs-subtitle {
        font-size: 16px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .programs-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .program-title {
        font-size: 18px;
    }
    
    .program-description {
        font-size: 13px;
    }
}

/* WhoWeAreSection */
.who-we-are-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1470px;
    margin: 0 auto;
}

.who-we-are-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 61.6px;
    color: #1b4489;
    letter-spacing: 0.3008px;
    text-align: left;
    margin: 0;
    max-width: 800px;
    width: 100%;
}

.who-we-are-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.who-we-are-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: 0.0605px;
    margin: 0;
}

.who-we-are-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-we-are-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: -0.4395px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.who-we-are-list li::before {
    content: "•";
    color: #276f85;
    font-size: 24px;
    line-height: 36px;
    flex-shrink: 0;
}

.who-we-are-button {
    background-color: #ffffff;
    border: 2px solid #276f85;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.who-we-are-button:hover {
    background-color: #276f85;
    color: #ffffff;
}

.who-we-are-button .button-icon {
    width: 20px;
    height: 20px;
}

/* WhoWeAreSection Responsive */
@media (max-width: 1200px) {
    .who-we-are-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .who-we-are-section {
        padding: 80px 40px;
    }
    
    .who-we-are-heading {
        font-size: 48px;
        line-height: 56px;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 64px 20px;
        gap: 24px;
    }
    
    .who-we-are-heading {
        font-size: 40px;
        line-height: 48px;
    }
    
    .who-we-are-paragraph {
        font-size: 16px;
        line-height: 28px;
    }
    
    .who-we-are-list li {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .who-we-are-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .who-we-are-paragraph {
        font-size: 14px;
        line-height: 24px;
    }
    
    .who-we-are-list li {
        font-size: 14px;
        line-height: 24px;
    }
}

/* RealVoicesSection */
.real-voices-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1470px;
    margin: 0 auto;
}

.real-voices-image {
    position: relative;
    width: 544px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.real-voices-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 24px;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button img {
    width: 48px;
    height: 48px;
}

.real-voices-content {
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.real-voices-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.real-voices-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: 0.0605px;
    margin: 0;
}

.real-voices-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    letter-spacing: -0.4492px;
    margin: 0;
}

.real-voices-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: 0.0605px;
    margin: 0;
}

.real-voices-button {
    background-color: #276f85;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    transition: background-color 0.2s ease;
}

.real-voices-button:hover {
    background-color: #1e5a6b;
}

.real-voices-button .button-icon {
    width: 20px;
    height: 20px;
}

/* RealVoicesSection Responsive */
@media (max-width: 1200px) {
    .real-voices-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .real-voices-section {
        flex-direction: column;
        padding: 80px 40px;
        gap: 48px;
    }
    
    .real-voices-image {
        width: 100%;
        max-width: 544px;
    }
    
    .real-voices-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .real-voices-section {
        padding: 64px 20px;
    }
    
    .real-voices-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .real-voices-intro,
    .real-voices-text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .real-voices-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .real-voices-intro,
    .real-voices-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .play-button {
        width: 64px;
        height: 64px;
        padding: 16px;
    }
    
    .play-button img {
        width: 32px;
        height: 32px;
    }
}

/* ImpactSection */
.impact-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1470px;
    margin: 0 auto;
}

.impact-content {
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 19.6px;
    color: #1b4489;
    letter-spacing: 0.3496px;
    text-transform: uppercase;
    margin: 0;
}

.impact-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.impact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: 0.0605px;
    margin: 0;
}

.impact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.impact-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    letter-spacing: -0.4492px;
    margin: 0;
}

.impact-feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    letter-spacing: 0.1875px;
    margin: 0;
}

.impact-image {
    flex: 1;
    max-width: 544px;
    height: 694.227px;
    border-radius: 12px;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ImpactSection Responsive */
@media (max-width: 1200px) {
    .impact-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .impact-section {
        flex-direction: column;
        padding: 80px 40px;
        gap: 48px;
    }
    
    .impact-content {
        max-width: 100%;
    }
    
    .impact-image {
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }
    
    .impact-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 64px 20px;
    }
    
    .impact-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .impact-text {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .impact-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .impact-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .impact-feature-title {
        font-size: 18px;
    }
    
    .impact-feature-text {
        font-size: 14px;
    }
}

/* VoicesOfTransformationSection */
.voices-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1470px;
    margin: 0 auto;
}

.voices-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voices-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.voices-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #333333;
    letter-spacing: 0.0605px;
    margin: 0;
}

.voices-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.voices-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars img {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    color: #1f2937;
    letter-spacing: 0.1875px;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d9d9d9;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 19.6px;
    color: #1f2937;
    letter-spacing: 0.3496px;
    margin: 0;
}

.author-role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin: 0;
}

.voices-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.voices-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
}

.dot.active {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background-color: #1b4489;
    max-width: 32px;
}

.voices-arrows {
    display: flex;
    gap: 8px;
}

.arrow-button {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.arrow-button:hover {
    border-color: #1b4489;
}

.arrow-button:first-child {
    opacity: 0.4;
}

.arrow-button img {
    width: 20px;
    height: 20px;
}

/* VoicesOfTransformationSection Responsive */
@media (max-width: 1200px) {
    .voices-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .voices-section {
        padding: 80px 40px;
    }
    
    .voices-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .voices-section {
        padding: 64px 20px;
        gap: 32px;
    }
    
    .voices-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .voices-subtitle {
        font-size: 16px;
    }
    
    .voices-testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .voices-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 22px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
}

/* MakeADifferenceSection */
.make-difference-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1470px;
    margin: 0 auto;
}

.make-difference-content {
    max-width: 544px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.make-difference-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    color: #333333;
    letter-spacing: 0.3496px;
    margin: 0;
}

.make-difference-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.make-difference-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 31.5px;
    color: #1f2937;
    letter-spacing: 0.0605px;
    margin: 0;
}

.make-difference-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.make-difference-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    letter-spacing: -0.4492px;
    margin: 0;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    letter-spacing: 0.3496px;
    margin: 0;
}

.make-difference-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.make-difference-button-primary {
    background-color: #276f85;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 13.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.make-difference-button-primary:hover {
    background-color: #1e5a6b;
}

.make-difference-button-secondary {
    background-color: #ffffff;
    border: 2px solid #276f85;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.make-difference-button-secondary:hover {
    background-color: #276f85;
    color: #ffffff;
}

.make-difference-button-secondary .button-icon {
    width: 20px;
    height: 20px;
}

.make-difference-image {
    flex: 1;
    max-width: 544px;
    height: 683.633px;
    border-radius: 12px;
    overflow: hidden;
}

.make-difference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* MakeADifferenceSection Responsive */
@media (max-width: 1200px) {
    .make-difference-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .make-difference-section {
        flex-direction: column;
        padding: 80px 40px;
        gap: 48px;
    }
    
    .make-difference-content {
        max-width: 100%;
    }
    
    .make-difference-image {
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }
    
    .make-difference-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .make-difference-section {
        padding: 64px 20px;
    }
    
    .make-difference-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .make-difference-text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .make-difference-buttons {
        flex-direction: column;
    }
    
    .make-difference-button-primary,
    .make-difference-button-secondary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .make-difference-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .make-difference-text {
        font-size: 14px;
        line-height: 24px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 13px;
    }
}

/* NewsUpdatesSection */
.news-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1470px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 1152px;
    width: 100%;
}

.news-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #1b4489;
    letter-spacing: 0.3516px;
    margin: 0;
}

.news-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #333333;
    letter-spacing: 0.0605px;
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1152px;
    width: 100%;
}

.news-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 240px;
    background-color: #d9d9d9;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-category {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16.8px;
    color: #1b4489;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-read-time {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16.8px;
    color: #6b7280;
}

.news-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    letter-spacing: -0.4492px;
    margin: 0;
}

.news-excerpt {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    letter-spacing: 0.3496px;
    margin: 0;
    flex: 1;
}

.news-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 19.6px;
    color: #276f85;
    letter-spacing: 0.5996px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #1e5a6b;
}

.news-link .link-icon {
    width: 16px;
    height: 16px;
}

.news-button {
    background-color: #ffffff;
    border: 2px solid #276f85;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1875px;
    text-decoration: none;
    padding: 11.5px 24px;
    border-radius: 8px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.news-button:hover {
    background-color: #276f85;
    color: #ffffff;
}

/* NewsUpdatesSection Responsive */
@media (max-width: 1200px) {
    .news-section {
        padding: 96px 80px;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 80px 40px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 64px 20px;
        gap: 32px;
    }
    
    .news-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .news-subtitle {
        font-size: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .news-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 13px;
    }
}

/* StayConnectedSection */
.stay-connected-section {
    background-color: #ffffff;
    width: 100%;
    padding: 96px 159px 0;
    position: relative;
    overflow: hidden;
    max-width: 1470px;
    margin: 0 auto;
    min-height: 474.383px;
    margin-bottom: -200px;
    padding-bottom: 200px;
}

.orange-ring {
    position: absolute;
    right: -250px;
    top: 94.88px;
    width: 500px;
    height: 500px;
    border: 70px solid #d78b3b;
    border-radius: 250px;
    z-index: 1;
    pointer-events: none;
}

.stay-connected-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
}

.stay-connected-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 57.6px;
    color: #276f85;
    letter-spacing: 0.3516px;
    margin: 0;
}

.stay-connected-form {
    background-color: #f3f4f6;
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    min-height: 192.789px;
    width: 100%;
    max-width: 1152px;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 19.6px;
    color: #000000;
    letter-spacing: 0.3496px;
    text-transform: uppercase;
}

.form-input {
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    height: 52px;
    padding: 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #276f85;
}

.form-submit {
    background-color: transparent;
    border: none;
    color: #276f85;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: 0.3105px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: fit-content;
    align-self: flex-end;
    margin-top: 16px;
    transition: color 0.2s ease;
}

.form-submit:hover {
    color: #1e5a6b;
}

.form-submit .submit-icon {
    width: 24px;
    height: 24px;
}

.wave-decoration {
    position: relative;
    width: 263.395px;
    height: 92.088px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wave-vector {
    width: 38.654px;
    height: 261.064px;
    transform: rotate(282deg);
    display: block;
}

/* StayConnectedSection Responsive */
@media (max-width: 1400px) {
    .orange-ring {
        left: auto;
        right: -200px;
    }
}

@media (max-width: 1200px) {
    .stay-connected-section {
        padding: 96px 80px;
    }
    
    .orange-ring {
        right: -250px;
        width: 400px;
        height: 400px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .stay-connected-form {
        height: auto;
        min-height: 192.789px;
    }
    
    .form-submit {
        position: relative;
        right: auto;
        align-self: flex-end;
        margin-top: 16px;
    }
}

@media (max-width: 992px) {
    .stay-connected-section {
        padding: 80px 40px;
    }
    
    .orange-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .stay-connected-section {
        padding: 64px 20px;
    }
    
    .stay-connected-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .stay-connected-form {
        padding: 24px;
        height: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        height: auto;
    }
    
    .form-submit {
        align-self: stretch;
        justify-content: center;
        margin-top: 16px;
    }
    
    .wave-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .stay-connected-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .stay-connected-form {
        padding: 20px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-input {
        height: 48px;
        font-size: 14px;
    }
    
    .form-submit {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background-color: #276f85;
    width: 100%;
    position: relative;
    z-index: 5;
    padding: 64px 0 0;
    margin: 0;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 368px 368px 368px;
    gap: 48px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 25px;
    min-height: 214px;
    box-sizing: border-box;
    position: relative;
    z-index: 6;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
}

.footer-logo {
    gap: 16px;
}

.footer-logo-link {
    display: inline-block;
    width: 188.523px;
    height: 64px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    letter-spacing: 0.1875px;
    margin: 0;
    max-width: 368px;
    word-wrap: break-word;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-icon-container {
    width: 32px;
    height: 32px;
    position: relative;
    display: block;
}

.social-icon-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.footer-nav {
    gap: 12px;
}

.footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #ffffff;
    letter-spacing: -0.4395px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    display: block;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

.footer-programs {
    gap: 16px;
}

.footer-programs-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #ffffff;
    letter-spacing: -0.4492px;
    margin: 0;
}

.footer-program-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    letter-spacing: -0.3125px;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    display: block;
}

.footer-program-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    color: #ffffff;
    letter-spacing: 0.3496px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-legal-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19.6px;
    color: #ffffff;
    letter-spacing: -0.1504px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
    opacity: 0.7;
}

.footer-separator {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    letter-spacing: -0.3125px;
}

/* Footer Responsive */
@media (max-width: 1400px) {
    .footer-content {
        margin-left: 135px;
        width: calc(100% - 270px);
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .stay-connected-section {
        padding: 96px 80px 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        padding: 0 20px 25px;
    }
    
    .footer-programs {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    .stay-connected-section {
        padding: 80px 40px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 25px;
    }
    
    .footer-bottom {
        padding: 25px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .stay-connected-section {
        padding: 64px 20px 0;
    }
    
    .footer-content {
        gap: 24px;
        padding: 0 20px 25px;
    }
    
    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .footer-nav-link {
        font-size: 16px;
    }
    
    .footer-program-link {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .footer-separator {
        display: none;
    }
}

