:root {
    --primary: #2196f3;
    --primary-light: #e3f2fd;
    --primary-dark: #1769aa;
    --accent: #ffd600;
    --text-main: #222;
    --text-muted: #555;
    --bg-main: #f8f9fa;
    --white: #fff;
    --border-radius: 0.3rem;
    --shadow-main: 0 4px 32px rgba(33, 150, 243, 0.07);
    --shadow-img: 0 4px 24px rgba(33, 150, 243, 0.13);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-head: 'Amatic SC';
    --alt-font: 'Rubik';
    --fs-h1: 4rem;
    --fs-h2: 2.5rem;
    --fs-nav: 1.08rem;
    --fs-body: 1.1rem;
    --fs-btn: 1.08rem;
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background: var(--bg-main);
    color: var(--text-main);
}
header {
    background: var(--white);
    color: var(--text-main);
    padding: 1.5rem 0 1rem 0;
    text-align: center;
}
header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-nav);
    transition: color 0.2s;
}
nav a:hover {
    color: var(--accent);
}
.hero {
    background: var(--white);
    margin: 2rem auto;
    padding: 2rem 1rem;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(74, 20, 140, 0.08);
    text-align: center;
}
.hero h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}
footer {
    position: static !important;
    width: 100%;
    left: 0;
    bottom: 0;
    background: none;
    color: inherit;
    text-align: inherit;
    padding: 0;
    /* margin-top: 15px !important; */
}
.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

.donate-form, .contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
}
.donate-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 350px;
    padding: 0.7rem;
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    font-size: var(--fs-body);
    background: var(--white);
    box-sizing: border-box;
}
.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}
.donate-form button,
.contact-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-size: var(--fs-btn);
    cursor: pointer;
    transition: background 0.2s;
}
.donate-form button:hover,
.contact-form button:hover {
    background: var(--primary-dark);
}
.contact-details {
    margin-top: 2rem;
    color: var(--primary);
    font-size: var(--fs-body);
    text-align: center;
}

/* Header and Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3vw 1.2rem 3vw;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    position: relative;
    z-index: 10;
}
.logo-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-head);
}
.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    font-size: 1.7rem;
}
.logo-heart {
    color: var(--primary);
    font-size: 1.3rem;
}
.trust-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    font-family: var(--font-head);
}
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.main-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-nav);
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s;
}
.main-nav a.active,
.main-nav a:hover {
    color: var(--primary);
    background: var(--primary-light);
}
.donate-btn {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: var(--border-radius);
    margin-left: 0.7rem;
    transition: background 0.15s;
}
.donate-btn:hover {
    background: var(--primary-dark);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-main);
}
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-main);
    font-size: 1.5rem;
}
@media (max-width: 900px) {
    .main-header {
        padding: 1rem 1.5rem;
    }
    .mobile-menu-btn {
        display: block;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 1000;
        padding: 4rem 2rem 2rem;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .main-nav a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1.2rem;
    }
    .mobile-menu-close {
        display: block;
    }
    .donate-btn {
        margin: 1rem 0 0 0;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3vw;
    max-width: 1200px;
    margin: 3.5rem auto 0 auto;
    padding: 2.5rem 3vw;
    background: var(--white);
    border-radius: calc(var(--border-radius) * 6);
    box-shadow: var(--shadow-main);
}
.hero-content {
    flex: 1 1 0;
    min-width: 320px;
}
.hero-content h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    line-height: 1.1;
    color: var(--text-main);
    font-family: var(--font-head);
}
.hero-content .highlight {
    color: var(--primary);
}
.hero-desc {
    font-size: var(--fs-body);
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1.2rem;
}
.cta-btn {
    display: inline-block;
    font-size: var(--fs-btn);
    font-weight: 600;
    padding: 0.8rem 1.7rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border 0.15s;
}
.cta-btn.primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}
.cta-btn.primary:hover {
    background: var(--primary-dark);
}
.cta-btn.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.cta-btn.secondary:hover {
    background: var(--primary-light);
}
.hero-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    max-width: 420px;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-img);
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0 1rem;
        text-align: center;
    }
    
    .hero-content {
        min-width: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 1rem 0.3rem;
        margin: 0.7rem 0.2rem 0 0.2rem;
    }
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.15;
        word-break: break-word;
        margin-bottom: 0.8rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 0.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: stretch;
    }
    .cta-btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0.7rem 0.2rem;
        box-sizing: border-box;
        margin: 0;
    }
    .hero-image img {
        max-width: 90vw;
        height: auto;
    }
}

.programs-section {
    padding: 4rem 3vw;
    background: var(--white);
}

.programs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.programs-title-main {
    color: var(--text-main);
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    font-weight: 700;
}

.programs-title-highlight {
    color: var(--primary);
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    font-weight: 700;
}

.programs-header h2 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.programs-subtitle {
    color: var(--text-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.programs-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--primary-light);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-img);
}

.program-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.3s;
}

.program-card:hover .program-icon {
    background: var(--primary);
}

.program-icon .icon-svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: fill 0.3s;
}

.program-card:hover .program-icon .icon-svg {
    fill: var(--white);
}

.program-card:nth-child(1) .program-icon .icon-svg {
    fill: #e91e63; /* Pink/Red for Health */
}

.program-card:nth-child(2) .program-icon .icon-svg {
    fill: #4caf50; /* Green for Tree Plantation */
}

.program-card:nth-child(3) .program-icon .icon-svg {
    fill: #f44336; /* Red for Blood Donation */
}

.program-card:nth-child(4) .program-icon .icon-svg {
    fill: #9c27b0; /* Purple for Yoga */
}

.program-card:nth-child(5) .program-icon .icon-svg {
    fill: #ff9800; /* Orange for Sanskar Shibir */
}

.program-card:nth-child(6) .program-icon .icon-svg {
    fill: #2196f3; /* Blue for Self Defence */
}

.program-card:nth-child(1):hover .program-icon {
    background: #e91e63;
}

.program-card:nth-child(2):hover .program-icon {
    background: #4caf50;
}

.program-card:nth-child(3):hover .program-icon {
    background: #f44336;
}

.program-card:nth-child(4):hover .program-icon {
    background: #9c27b0;
}

.program-card:nth-child(5):hover .program-icon {
    background: #ff9800;
}

.program-card:nth-child(6):hover .program-icon {
    background: #2196f3;
}

.program-card:hover .program-icon .icon-svg {
    fill: var(--white);
}

.program-card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.program-card p {
    color: var(--text-muted);
    font-size: var(--fs-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 700px) {
    .programs-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .programs-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .programs-subtitle {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #232b34;
    color: #e3e8ee;
    margin-top: 0;
    font-size: 1rem;
    padding: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2vw 2rem 2vw;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 1.5rem;
}
.footer-brand {
    max-width: 340px;
}
.footer-logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1rem;
}
.footer-logo-title .logo-circle {
    width: 100px;
    height: 100px;
    background: white;
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-title .logo-heart {
    color: #fff;
    font-size: 1.5rem;
}
.footer-logo-title .trust-name {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.footer-desc {
    color: #bfc9d1;
    font-size: 1.08rem;
    margin: 0 0 0.5rem 0;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.7rem;
    color: #e3e8ee;
    font-size: 1.05rem;
}
.footer-col ul li a {
    color: #e3e8ee;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col ul li a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    color: #bfc9d1;
    font-size: 0.98rem;
    padding: 1.2rem 2vw 1.5rem 2vw;
}
.footer-bottom hr {
    border: none;
    border-top: 1px solid #374151;
    margin-bottom: 1.2rem;
}
@media (max-width: 700px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-col {
        width: 100%;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        text-align: center;
    }
}

.mission-section {
    background: var(--primary);
    color: #fff;
    padding: 2.0rem 0 4.5rem 0;
    text-align: center;
}
.mission-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    font-weight: 700;
    margin-bottom: 1.1rem;
}
.mission-subtitle {
    font-size: 1.25rem;
    color: #e3e8ee;
    margin-bottom: 3.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.mission-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.mission-card {
    background: rgba(255, 255, 255, 0.119);
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.13);
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    width: 350px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    margin-bottom: 1.5rem;
}
.mission-card:hover {
    background: rgba(255,255,255,0.28);
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.22);
    transform: translateY(-4px) scale(1.025);
}
.mission-icon {
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.2rem;
}
.mission-icon .icon-svg {
    filter: brightness(0) invert(1);
}
.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.7rem 0 1.1rem 0;
    color: #fff;
    font-family: var(--font-main);
}
.mission-card p {
    color: #e3e8ee;
    font-size: 1.08rem;
    margin-bottom: 2.1rem;
    font-family: var(--font-main);
    font-weight: 700;
}
.mission-btn {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.10);
    display: inline-block;
}
.mission-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.18);
}
@media (max-width: 700px) {
    .mission-section {
        padding: 1.2rem 0 2.2rem 0;
    }
    .mission-title {
        font-size: 1.5rem;
        margin-bottom: 0.7rem;
    }
    .mission-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    .mission-cards {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0.5rem;
        align-items: stretch;
        justify-content: center;
        align-items: center;
    }
    .mission-card {
        width: 100%;
        min-width: 0;
        max-width: 90vw;
        box-sizing: border-box;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .mission-card h3 {
        font-size: 1.1rem;
        margin: 0.5rem 0 0.7rem 0;
    }
    .mission-card p {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }
    .mission-btn {
        width: 100%;
        padding: 0.7rem 0;
        font-size: 1rem;
    }
    .mission-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.7rem;
    }
    .mission-icon .icon-svg {
        width: 22px;
        height: 22px;
    }
}

/* Make all SVG icons white */
.icon-svg {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

/* Mission and logo icons remain white on blue backgrounds */
.mission-icon, .logo-circle {
    background: rgba(255,255,255,0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-icon .icon-svg, .logo-circle .icon-svg {
    filter: brightness(0) invert(1);
}

@media (max-width: 700px) {
    .icon-svg {
        width: 26px;
        height: 26px;
    }
    .logo-circle .icon-svg {
        width: 22px;
        height: 22px;
    }
    .program-icon {
        width: 38px;
        height: 38px;
    }
    .program-icon .icon-svg {
        width: 20px;
        height: 20px;
    }
    .mission-icon .icon-svg {
        width: 24px;
        height: 24px;
    }
}

/* General container for centering */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Donate Section */
.donate-section {
    background: #f5faff;
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
}
.donate-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: var(--primary);
    margin-bottom: 0.7rem;
}
.donate-desc {
    color: var(--text-muted);
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    max-width: 500px;
}
.donate-form {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.donate-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    font-size: var(--fs-body);
    background: #f8f9fa;
    margin-bottom: 0.5rem;
}
.donate-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius);
    font-size: var(--fs-btn);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 0.5rem;
}
.donate-form button:hover {
    background: var(--primary-dark);
}
.thank-you-message {
    color: var(--primary);
    font-weight: 600;
    margin-top: 1.2rem;
}

/* Why Donate Section */
.why-donate-section {
    background: #fff;
    padding: 2.5rem 0 2.5rem 0;
    text-align: center;
}
.why-donate-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: var(--primary);
    margin-bottom: 0.7rem;
}
.why-donate-desc {
    color: var(--text-muted);
    font-size: 1.13rem;
    max-width: 600px;
}

/* Donation Features Section */
.donation-features-section {
    background: #f5faff;
    padding: 2.5rem 0 3.5rem 0;
    text-align: center;
}
.features-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: var(--primary);
    margin-bottom: 2.2rem;
}
.features-cards {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    width: 270px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.18s;
    margin-bottom: 1.5rem;
}
.feature-card:hover {
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.18);
    transform: translateY(-4px) scale(1.025);
}
.feature-icon {
    background: var(--primary);
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.feature-icon .icon-svg {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}
.feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0.7rem 0 0.7rem 0;
    color: var(--primary);
    font-family: var(--font-main);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0;
    font-family: var(--font-main);
}

@media (max-width: 900px) {
    .features-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .feature-card {
        width: 98vw;
        max-width: 370px;
    }
}

.why-donate-list {
    list-style: disc inside;
    color: var(--text-muted);
    font-size: 1.13rem;
    max-width: 600px;
    margin: 0 auto 0 auto;
    padding-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.why-donate-list li {
    margin-bottom: 0.2rem;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .why-donate-list {
        font-size: 1rem;
        padding-left: 0.5rem;
    }
}

.donation-mission-section {
    background: #fff;
    padding: 3.5rem 0 3.5rem 0;
}
.donation-mission-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.donation-mission-flex {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.donation-mission-col {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #f5faff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.07);
    padding: 2.2rem 2rem 2rem 2rem;
    margin-bottom: 2rem;
}
.why-donate-col {
    margin-right: 0;
}
.features-col {
    margin-left: 0;
}
.why-donate-title, .features-title {
    text-align: left;
    width: 100%;
}
.why-donate-list, .features-list {
    margin-top: 1.2rem;
    margin-bottom: 0;
    padding-left: 0;
    width: 100%;
}
.features-list {
    list-style: none;
    color: var(--text-muted);
    font-size: 1.13rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.2rem;
    line-height: 1.6;
}
.feature-list-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.why-donate-list {
    list-style: disc inside;
    color: var(--text-muted);
    font-size: 1.13rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    text-align: left;
}
.why-donate-list li {
    margin-bottom: 0.2rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .donation-mission-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .donation-mission-col {
        max-width: 98vw;
        width: 100%;
    }
}

.about-section {
    max-width: 800px;
    margin: 3rem auto 3rem auto;
    padding: 2.5rem 2vw;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.07);
}
.about-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: var(--primary);
    margin-bottom: 1.2rem;
    text-align: center;
}
.about-subtitle {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-size: var(--fs-h2);
}

.section-title .title-part-one {
    color: var(--text-main); /* Black color for "GOVERNING BOARD" */
    font-size: var(--fs-h1);
}

.section-title .title-part-two {
    color: var(--primary); /* Blue color for "MEMBERS" */
    font-size: var(--fs-h1);
    display: inline-block; /* Allows for vertical alignment with brush stroke */
    position: relative;
    margin-left: 0.5rem;
}

.about-section p {
    color: var(--text-muted);
    font-size: 1.13rem;
    margin-bottom: 1.2rem;
    text-align: center;
}
.about-section ul {
    margin: 0 0 1.2rem 1.2rem;
    padding-left: 1.2rem;
    color: var(--text-main);
    font-size: 1.08rem;
}
.about-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}
.about-goals-list, .about-registry-list, .about-trustees-list {
    list-style: disc inside;
}
.about-section strong {
    color: var(--primary);
}
@media (max-width: 700px) {
    .about-section {
        padding: 1.2rem 1vw;
    }
    .about-title {
        font-size: var(--fs-h2);
    }
    .about-subtitle {
        font-size: 1.3rem;
    }
}

/* About Page Hero Section */
.about-hero-section {
    padding: 3.5rem 0 2.5rem 0;
    background: #fff;
}
.about-hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.about-hero-img-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-img-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M380 200c0 99.45-80.55 180-180 180S20 299.45 20 200 100.55 20 200 20s180 80.55 180 180Z" fill="%23c97c5a"/><path d="M200 20c99.45 0 180 80.55 180 180 0 99.45-80.55 180-180 180S20 299.45 20 200C20 100.55 100.55 20 200 20Z" fill-opacity=".15" fill="%23c97c5a"/></svg>') center/cover no-repeat;
    z-index: 1;
}
.about-hero-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.07);
    border: 8px dashed var(--primary);
}
.about-hero-content {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
.about-hero-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-align: left;
}
.about-hero-desc {
    color: var(--text-muted);
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    text-align: left;
}

/* About Goals Section */
.about-goals-section {
    background: var(--primary);
    color: #fff;
    padding: 1.0rem 0 3.5rem 0;
    text-align: center;
}
.about-goals-title {
    font-family: var(--font-head);
    font-size: var(--fs-h1);
    color: #fff;
    margin-bottom: 1.2rem;
}
.about-goals-list {
    list-style: disc inside;
    color: #fff;
    font-size: 1.13rem;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.about-goals-list li {
    margin-bottom: 0.2rem;
    line-height: 1.6;
}
.about-goals-list strong {
    color: #000000;
}

/* About Details Section */
.about-details-section {
    background: #fff;
    padding: 3.5rem 0 3.5rem 0;
}
.about-details-section .container {
    max-width: 800px;
}
.about-details-section h2 {
    font-family: var(--font-head);
    font-size: var(--fs-h2);
    color: var(--primary);
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
}
.about-details-section ul {
    margin: 0 0 1.2rem 1.2rem;
    padding-left: 1.2rem;
    color: var(--text-main);
    font-size: 1.08rem;
}
.about-details-section li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}
.about-details-section strong {
    color: var(--primary);
}
@media (max-width: 900px) {
    .about-hero-flex {
        flex-direction: column;
        gap: 2.2rem;
    }
    .about-hero-img-wrap {
        width: 220px;
        height: 220px;
    }
    .about-hero-img {
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 700px) {
    .about-hero-section, .about-goals-section, .about-details-section {
        padding: 1.2rem 0;
    }
    .about-hero-title {
        font-size: 1.3rem;
    }
    .about-goals-title {
        font-size: var(--fs-h2);
    }
    .about-details-section h2 {
        font-size: 1.3rem;
    }
}

.hero-main-title {
    font-family: var(--font-head);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    line-height: 1.08;
    letter-spacing: -1px;
}
@media (max-width: 900px) {
    .hero-main-title {
        font-size: 2.7rem;
    }
}
@media (max-width: 600px) {
    .hero-main-title {
        font-size: 1.7rem;
    }
}

.who-we-are-section {
    /* background: #fff; */
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.who-we-are-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.who-we-are-title {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}
.who-we-are-desc {
    color: var(--text-muted);
    font-size: 1.13rem;
    margin-bottom: 1.2rem;
}
.who-we-are-quote {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #4a148c;
    background: #f5f5f5;
    border-left: 5px solid var(--primary);
    margin: 2.5rem auto 0 auto;
    padding: 1.2rem 2rem 1.2rem 2.5rem;
    max-width: 600px;
    border-radius: var(--border-radius);
    font-style: italic;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.06);
}
.who-we-are-quote-author {
    display: block;
    font-family: var(--font-main);
    font-size: 1.08rem;
    color: var(--primary);
    margin-top: 0.7rem;
    font-style: normal;
}
@media (max-width: 700px) {
    .who-we-are-section {
        padding: 1.2rem 0;
    }
    .who-we-are-title {
        font-size: 1.3rem;
    }
    .who-we-are-quote {
        font-size: 1.1rem;
        padding: 1rem 1rem 1rem 1.2rem;
    }
}

/* New styles for Contact Page redesign */
.contact-info-section {
    padding: 3rem 0;
    background-color: var(--white);
    box-shadow: var(--shadow-main);
    margin-bottom: 2rem;
}

.contact-info-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info-section .section-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.office-map-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.office-details {
    flex: 1;
    min-width: 300px;
}

.office-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.office-details .person-email a {
    color: var(--primary);
    text-decoration: none;
}

.office-details .person-email a:hover {
    text-decoration: underline;
}

.office-details .trust-name-address strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-main);
}

.office-details .trust-name-address,
.office-details .phone-numbers {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.office-map {
    flex: 1.5;
    min-width: 500px;
    max-width: 800px;
}

.office-map iframe {
    width: 100%;
    border-radius: var(--border-radius);
}

@media (max-width: 900px) {
    .office-map-layout {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .office-details,
    .office-map {
        min-width: unset;
        width: 100%;
        max-width: 600px;
    }
}

/* Remove old contact styles if they exist */
.contact-section,
.contact-map-section,
.contact-title,
.contact-container,
.contact-details-grid,
.contact-details-block,
.contact-map-title,
.contact-map-container,
.contact-map {
    display: none; /* Hide old elements */
}

/* Page fade-in on load */
.page-fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-fade-in-active {
    opacity: 1;
}

/* Section fade-in on scroll */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-visible {
    opacity: 1;
    transform: none;
}

.donate-hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 3.5rem 0 2.5rem 0;
}
.donate-hero-content {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}
.donate-hero-title {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-align: left;
}
.donate-hero-desc {
    color: var(--text-muted);
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    max-width: 500px;
    text-align: left;
}
.donate-hero-form {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
}
.donate-amount-group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 2rem;
    padding: 0.2rem 1.2rem;
    margin-right: 1rem;
}
.donate-amount-label {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.3rem;
}
.donate-amount-input {
    border: none;
    outline: none;
    font-size: 1.3rem;
    width: 100px;
    background: transparent;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.4rem 0;
}
.donate-amount-input::-webkit-input-placeholder {
    color: #bbb;
    font-weight: 400;
}
.donate-amount-input:-ms-input-placeholder {
    color: #bbb;
    font-weight: 400;
}
.donate-amount-input::placeholder {
    color: #bbb;
    font-weight: 400;
}
.donate-hero-btn {
    background: #fff;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    border-radius: 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.7rem 2.2rem;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.donate-hero-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.donate-hero-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    color: #666;
    border-color: #ccc;
}
.donate-hero-btn:disabled:hover {
    background: #ccc;
    color: #666;
    border-color: #ccc;
}
.donate-hero-image-wrap {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.donate-hero-image {
    width: 100%;
    max-width: 458px;
    border-radius: 1.5rem 1.5rem 0 0;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(33, 150, 243, 0.07);
}
.donate-hero-stats-bar {
    display: flex;
    width: 100%;
    max-width: 420px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    justify-content: space-around;
    align-items: center;
    padding: 1.2rem;
    gap: 2.5rem;
}
.donate-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.donate-hero-stat-number {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}
.donate-hero-stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.95;
}
@media (max-width: 900px) {
    .donate-hero-flex {
        flex-direction: column;
        gap: 2.2rem;
        padding: 2rem 0 1.2rem 0;
    }
    .donate-hero-content, .donate-hero-image-wrap {
        max-width: 98vw;
        width: 100%;
    }
    .donate-hero-image, .donate-hero-stats-bar {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .donate-hero-title {
        font-size: 2rem;
    }
    .donate-hero-stat-number {
        font-size: 1.5rem;
    }
    .donate-hero-stats-bar {
        padding: 1.2rem 0 0.7rem 0;
    }
}

/* Membership Section Styles */
.membership-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.membership-container {
    max-width: 90%;
    margin: 0 auto;
}

.membership-title {
    text-align: center;
    color: #2196f3;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.membership-content {
    background: white;
    padding: 2rem;
    padding-top: 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.membership-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.membership-benefits,
.membership-requirements {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.membership-benefits li,
.membership-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.membership-benefits li:before {
    content: "✓";
    color: #2196f3;
    position: absolute;
    left: 0;
}

.membership-requirements li:before {
    content: "•";
    color: #2196f3;
    position: absolute;
    left: 0;
}

.membership-contact {
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.membership-contact a {
    color: #2196f3;
    text-decoration: none;
    font-weight: 500;
}

.membership-contact a:hover {
    text-decoration: underline;
}

.membership-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e3f2fd;
    border-radius: 0.25rem;
    color: #1976d2;
    font-style: italic;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-circle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.trustees-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.trustees-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    width: 100%;
}

.trustee-card {
    overflow: visible;
}

.trustee-image {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #b8860b;
    margin: 0 auto 1rem auto;
    box-shadow: var(--shadow-main);
}

.trustee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trustee-info {
    padding: 1.5rem;
    text-align: center;
}

.trustee-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trustee-role {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .trustees-grid {
        gap: 1.5rem;
    }

    .trustees-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trustee-image {
        width: 150px;
        height: 150px;
    }
}

/* Board Members Page Styles */
.board-members-section {
    padding: 4rem 0;
}

.board-member-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 90%;
    padding-inline: 40px;
}

.board-member-profile.reverse {
    flex-direction: row-reverse;
    margin-left: auto;
}

.board-member-image {
    flex-shrink: 0;
    position: relative;
    width: 280px;
    height: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    box-shadow: none;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.member-image-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px; 
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.board-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member-content {
    flex-grow: 1;
}

.member-name {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.member-designation {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 500;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Responsive adjustments for Board Members Page */
@media (max-width: 900px) {
    .board-member-profile {
        flex-direction: column;
        text-align: center;
    }

    .board-member-profile.reverse {
        flex-direction: column;
    }

    .board-member-image {
        margin-bottom: 2rem;
        width: 250px; /* Adjust for smaller screens */
        height: 250px; /* Adjust for smaller screens */
    }

    .member-image-inner {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 600px) {
    .board-member-image {
        width: 200px;
        height: 200px;
    }

    .member-image-inner {
        width: 150px;
        height: 150px;
    }

    .member-name {
        font-size: 1.8rem;
    }

    .member-designation,
    .member-description {
        font-size: 0.9rem;
    }
}

/* Our Work Page Styles */
.our-work {
    padding: 4rem 2rem;
    padding-top: 0;
    background: var(--background-light);
}

.our-work h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 4.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

.initiatives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.initiative-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.initiative-card:hover {
    transform: translateY(-5px);
}

.initiative-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.date-badge span {
    display: block;
    font-size: 0.8rem;
}

.initiative-content {
    padding: 1.5rem;
}

.initiative-content h3 {
    font-family: var(--font-main), cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 10px;
    text-align: center;
    /* font-weight: 700; */
}

.initiative-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.initiative-meta span {
    display: flex;
    align-items: center;
}

.initiative-meta i {
    margin-right: 5px;
}

.initiative-content p {
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
    .initiatives-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .initiative-image {
        height: 200px;
    }
}
@media (max-width: 600px) {
    .our-work h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    .initiative-content {
        padding: 16px 10px 14px 10px;
    }
    .initiative-image {
        height: 150px;
    }
    .date-badge {
        width: 70px;
        height: 56px;
        font-size: 0.9rem;
    }
    .date-day {
        font-size: 1.2rem;
    }
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: var(--primary-dark);
}

/* Event Gallery Styles */
.event-gallery {
    padding: 4rem 2rem;
    background: var(--background-light);
}

.event-gallery h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 4.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: -50px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    min-height: 100%;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.5);
}

.gallery-item .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: url('/icons/zoom.svg') no-repeat center center/contain;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 2;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
}

/* Overlay Styles */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid #fff;
    border-radius: 5px;
}

.overlay.active {
    display: flex;
}

.breadcrumb {
    padding-top: 2rem;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #333;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

/* Know More Section Styles */
.know-more-section {
    text-align: center;
    background: var(--background-light);
    margin-top: -2rem;
    padding-bottom: 2rem;
}

.know-more-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.know-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background: var(--primary-dark);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.stand-for-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.stand-for-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
}

.stand-for-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stand-for-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

.about-sections-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-light);
    margin: 2rem 0;
}

.about-sections-container > section {
    flex: 1;
    min-width: 0;
}

.section-divider {
    width: 1px;
    background: var(--primary);
    opacity: 0.3;
    margin: 2rem 0;
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

@media (max-width: 900px) {
    .about-sections-container {
        flex-direction: column;
        gap: 0;
    }

    .section-divider {
        width: 80%;
        height: 1px;
        margin: 2rem auto;
    }
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .main-header {
        padding: 1rem 2vw;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 2rem;
        z-index: 100;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        padding: 0.5rem;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-main);
    }
}

/* Mobile Hero Section */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0 1rem;
        text-align: center;
    }
    
    .hero-content {
        min-width: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 1rem 0.3rem;
        margin: 0.7rem 0.2rem 0 0.2rem;
    }
    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.15;
        word-break: break-word;
        margin-bottom: 0.8rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 0.2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
        align-items: stretch;
    }
    .cta-btn {
        width: 100%;
        text-align: center;
        font-size: 1rem;
        padding: 0.7rem 0.2rem;
        box-sizing: border-box;
        margin: 0;
    }
    .hero-image img {
        max-width: 90vw;
        height: auto;
    }
}

/* Mobile Programs Section */
@media (max-width: 700px) {
    .programs-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .programs-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .programs-subtitle {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Mobile Mission Section */
@media (max-width: 700px) {
    .mission-cards {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .mission-card {
        width: 100%;
    }
    
    .mission-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission-subtitle {
        text-align: center;
        padding: 0 1rem;
    }
}

/* Mobile Footer */
@media (max-width: 700px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-col {
        width: 100%;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        text-align: center;
    }
}

/* Mobile-friendly styles for about page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 2rem 1rem;
    }

    .about-hero-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .about-hero-img-wrap {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .about-hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .about-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-sections-container {
        padding: 2rem 1rem;
    }

    .about-content {
        padding: 0;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .stand-for-list {
        padding-left: 1.2rem;
    }

    .stand-for-list li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .about-goals-section {
        padding: 2rem 1rem;
    }

    .about-goals-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-goals-list {
        padding-left: 1.2rem;
    }

    .about-goals-list li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-details-section {
        padding: 2rem 1rem;
    }

    .about-details-section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .trustees-grid {
        gap: 2rem;
    }

    .trustees-row {
        flex-direction: column;
        gap: 2rem;
    }

    .trustee-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .trustee-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .trustee-info {
        text-align: center;
        padding: 1rem 0;
    }

    .trustee-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .trustee-role {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .about-registry-list {
        padding-left: 1.2rem;
    }

    .about-registry-list li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .know-more-section {
        text-align: center;
        margin-top: 2rem;
    }

    .know-more-btn {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-desc {
        font-size: 0.95rem;
    }

    .about-goals-title,
    .about-details-section h2 {
        font-size: 1.8rem;
    }

    .trustee-image {
        width: 180px;
        height: 180px;
    }

    .trustee-info h3 {
        font-size: 1.2rem;
    }
}

/* Advertise Section Styles */
.advertise-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.advertise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.advertise-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.advertise-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.advertise-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

/* Advertise Page Styles */
.advertise-hero-section {
    padding: 6rem 0;
    background-color: #f5f5f5;
    text-align: center;
}

.advertise-hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1.5rem auto;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.opportunities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.opportunity-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.opportunity-item h3 {
    color: #4a90e2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.opportunity-item ul {
    list-style-type: none;
    padding: 0;
}

.opportunity-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.opportunity-item li:last-child {
    border-bottom: none;
}

.contact-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-info {
    margin: 2rem 0;
    text-align: center;
}

.contact-info a {
    color: #4a90e2;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #4a90e2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #357abd;
    transform: translateY(-2px);
}

/* Success and Error Messages */
.success-message,
.error-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-grid,
    .opportunities-list {
        grid-template-columns: 1fr;
    }

    .advertise-hero-section {
        padding: 4rem 1rem;
    }

    .contact-form {
        margin: 0 1rem;
    }
}

/* How it Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background-color: #fff;
}

.steps-container {
    max-width: 800px;
    margin: 3rem auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Get Started Section */
.get-started-section {
    padding: 4rem 0;
    background-color: #fff;
}

.get-started-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.get-started-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-item {
        padding: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .step-item p {
        font-size: 1rem;
    }

    .auto-removal-content p,
    .get-started-content > p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Advertisements Section Styles */
.advertisements-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 90%;
}

.advertisement-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 290px;
}

.advertisement-card:hover {
    transform: translateY(-5px);
}

.advertisement-content {
    padding: 1.5rem;
}

.advertisement-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.advertisement-card h3 {
    color: #333;
    margin: 1rem 0;
    font-size: 1.25rem;
}

.advertisement-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.advertisement-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.advertisement-link:hover {
    background-color: #45a049;
}

.no-advertisements {
    text-align: center;
    color: #666;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 2rem;
}

.advertisement-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.business-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Media & Events Page Styles */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.25rem;
}

.video-content p {
    color: #666;
    line-height: 1.6;
}

/* Media Gallery Section */
.media-gallery-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-content {
        padding: 1.25rem;
    }
}

/* Birthday Banner Styles */
.birthday-banner-wrapper {
    width: 100%;
    background: var(--primary-dark);
    overflow: hidden;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(33,150,243,0.07);
}
.birthday-banner {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 2.7rem;
    display: flex;
    align-items: center;
}
.birthday-banner-text {
    display: inline-block;
    padding-left: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    animation: birthday-scroll 18s linear infinite;
}
@keyframes birthday-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
@media (max-width: 600px) {
    .birthday-banner-text {
        font-size: 0.98rem;
    }
    .birthday-banner {
        height: 2.1rem;
    }
}

/* Birthday Carousel Section Styles */
.birthday-carousel-section {
    background: #fff;
    padding: 3rem 0 3.5rem 0;
    text-align: center;
}
.birthday-carousel-title {
    font-family: var(--font-head);
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.birthday-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    min-height: 270px;
}
.birthday-carousel-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.birthday-slide {
    flex: 0 0 320px;
    max-width: 320px;
    min-width: 220px;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(33,150,243,0.10);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    transition: box-shadow 0.18s, transform 0.18s;
}
.birthday-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border: 3px solid var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.birthday-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.birthday-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.birthday-wish {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}
.carousel-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 0.7rem;
    transition: background 0.18s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover, .carousel-btn:focus {
    background: var(--primary-dark);
    outline: none;
    transform: scale(1.08);
}
.carousel-btn-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@media (max-width: 700px) {
    .birthday-carousel-section {
        padding: 1.2rem 0 2rem 0;
    }
    .birthday-carousel {
        min-height: 180px;
    }
    .birthday-slide {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-width: 160px;
        max-width: 98vw;
    }
    .birthday-img-wrap {
        width: 70px;
        height: 70px;
    }
    .birthday-carousel-title {
        font-size: 1.2rem;
    }
    .carousel-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Testimonial Carousel Section Styles */
.testimonial-carousel-section {
    background: #fff;
    padding: 3rem 0 3.5rem 0;
    text-align: center;
}
.testimonial-carousel-title {
    font-family: var(--font-head);
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    min-height: 270px;
}
.testimonial-carousel-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.testimonial-slide {
    flex: 0 0 320px;
    max-width: 320px;
    min-width: 220px;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(33,150,243,0.10);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-img-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border: 3px solid var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.testimonial-text {
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    font-style: italic;
    margin-top: 0.7rem;
}
.carousel-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    margin: 0 0.7rem;
    transition: background 0.18s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(33,150,243,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.carousel-btn:hover, .carousel-btn:focus {
    background: var(--primary-dark);
    outline: none;
    transform: scale(1.08);
}
.carousel-btn-sec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .testimonial-slide {
        flex: 0 0 240px;
        max-width: 240px;
        padding: 1.2rem 1rem 1rem 1rem;
    }
}
@media (max-width: 700px) {
    .testimonial-carousel-section {
        padding: 1.2rem 0 2rem 0;
    }
    .testimonial-carousel {
        min-height: 180px;
    }
    .testimonial-slide {
        flex: 0 0 90vw;
        max-width: 98vw;
        min-width: 140px;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .testimonial-img-wrap {
        width: 70px;
        height: 70px;
    }
    .testimonial-carousel-title {
        font-size: 1.2rem;
    }
    .carousel-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}

/* Membership Steps Styles */
.membership-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
    border-left: 4px solid var(--primary);
}

.step h3 {
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.step p {
    margin: 0 0 1rem 0;
    color: var(--text-main);
    line-height: 1.6;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.download-icon {
    font-size: 1.2rem;
}

.office-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

/* .office-option {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary);
} */

.office-option strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
    .membership-steps {
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .office-options {
        gap: 0.8rem;
    }
    
    .office-option {
        padding: 0.8rem;
    }
}

@media (max-width: 700px) {
    .container {
        max-width: 100vw;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
}
  