/* ===========================
   Font Faces
   =========================== */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/S6uyw4BMUTPHjx4wXg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/S6u9w4BMUTPHh50XSwiPGQ.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #461465;
    --primary-dark: #2d0d42;
    --primary-light: #6b1e99;
    --text-dark: #2c2c2c;
    --text-medium: #555;
    --text-light: #777;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-orange: #ff6b35;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.8rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   Header
   =========================== */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.header-donate-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.header-donate-btn:hover {
    background: var(--primary-dark);
}

.mobile-donate-btn {
    display: none;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-donate-btn:hover {
    background: var(--primary-dark);
}

/* ===========================
   Hamburger Menu
   =========================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Media Query - Mobile Nav
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        left: 0;
        top: 80px;
        width: 100%;
        flex-direction: column;
        background: white;
        border-bottom: 1px solid var(--border-color);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav a,
    .nav .header-donate-btn {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
        margin: 0;
        display: block;
    }

    .nav .header-donate-btn {
        margin: 12px 24px;
        border: none;
    }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, rgba(70, 20, 101, 0.7) 0%, rgba(45, 13, 66, 0.7) 100%), url('https://okachicharityfoundation.org/wp-content/uploads/2025/10/IMG_1866ss.JPEG-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 100px;
    text-align: center;
}

.hero-title {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.8rem;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.donation-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.donation-type-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    overflow: hidden;
}

.toggle-btn {
    flex: 1;
    padding: 16px;
    background: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.toggle-btn.active {
    background: var(--primary-color);
    color: white;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 18px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.amount-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.amount-btn.active {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-color);
}

.custom-amount {
    position: relative;
    margin-bottom: 24px;
}

.custom-amount .currency {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.custom-amount input {
    width: 100%;
    padding: 16px 16px 16px 40px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.donation-impact {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.donate-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.donate-btn:hover {
    background: var(--primary-dark);
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.payment-logos img {
    height: 25px;
    opacity: 0.7;
}

/* ===========================
   How to Donate Section
   =========================== */
.how-to-donate-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.donate-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.donate-method-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.donate-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.method-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.donate-method-card:hover .method-image img {
    transform: scale(1.05);
}

.method-content {
    padding: 32px;
    text-align: center;
}

.method-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.method-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.method-link {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.method-link:hover {
    background: var(--primary-dark);
}

/* ===========================
   Impact Intro
   =========================== */
.impact-intro {
    padding: 80px 0 40px;
    background: var(--bg-white);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ===========================
   Stories Section
   =========================== */
.stories-section {
    padding: 40px 0 80px;
    background: var(--bg-white);
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-card.reverse {
    direction: rtl;
}

.story-card.reverse>* {
    direction: ltr;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.story-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.story-content p {
    margin-bottom: 16px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.story-note {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 24px;
}

/* ===========================
   Achievement Section
   =========================== */
.achievement-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.achievement-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 48px auto;
    max-width: 100%;
    padding: 0 24px;
}

.carousel-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: var(--primary-dark);
}

.achievement-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    flex: 1;
    width: 100%;
}

.achievement-carousel::-webkit-scrollbar {
    height: 6px;
}

.achievement-carousel::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.achievement-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.achievement-card {
    width: 400px;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.achievement-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.achievement-card:hover img {
    transform: scale(1.05);
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-image {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.3s;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: background 0.3s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: white;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

#modalTitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

#modalDescription {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.modal-donate-btn {
    padding: 14px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-donate-btn:hover {
    background: var(--primary-dark);
}

.cta-btn {
    padding: 18px 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: var(--primary-dark);
}

/* ===========================
   Donate CTA Section
   =========================== */
.donate-cta-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.donate-cta-section .section-title {
    color: white;
}

.donate-cta-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ===========================
   Why Section
   =========================== */
.why-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-video {
    width: 100%;
}

.why-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-video .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.why-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.why-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-dark);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 48px auto 32px;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: 32px;
}

/* ===========================
   Video Section
   =========================== */
.video-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.video-container {
    max-width: 900px;
    margin: 48px auto 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ===========================
   Donation Modal
   =========================== */
.donation-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.donation-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.donation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-modal-close:hover {
    color: var(--primary-color);
}

.donation-modal-content h2 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.donation-modal-content>p {
    color: var(--text-medium);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(70, 20, 101, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    margin-top: 8px;
}

.form-group.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-style: italic;
    margin: 8px 0;
}

.donation-submit-btn {
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}

.donation-submit-btn:hover {
    background: var(--primary-dark);
}

.donation-submit-btn:active {
    transform: scale(0.98);
}

/* ===========================
   Regular Giving Section
   =========================== */
.regular-giving-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.regular-giving-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.regular-giving-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.regular-giving-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.regular-giving-text h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 32px 0 16px;
}

.regular-giving-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.regular-giving-text ul {
    margin: 20px 0 20px 24px;
}

.regular-giving-text li {
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===========================
   Other Ways Section
   =========================== */
.other-ways-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.way-card {
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.way-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.way-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.way-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.bank-details-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 48px auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.bank-details-box h3 {
    color: var(--primary-color);
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.bank-name,
.account-name {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.account-numbers {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.account-item {
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

.special-donations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.special-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.special-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.special-content {
    padding: 32px;
}

.special-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.special-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ===========================
   Impact Stats Section
   =========================== */
.impact-stats-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-highlight {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.stats-highlight p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.impact-areas {
    max-width: 1000px;
    margin: 0 auto;
}

.impact-area {
    margin-bottom: 48px;
}

.impact-area h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.impact-area>p {
    color: var(--text-medium);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.impact-area ul {
    margin-left: 24px;
}

.impact-area li {
    margin-bottom: 12px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===========================
   More Ways Section
   =========================== */
.more-ways-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.help-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.help-card:hover {
    transform: translateY(-4px);
}

.help-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.help-content {
    padding: 32px;
    text-align: center;
}

.help-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.help-card p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.card-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.card-btn:hover {
    background: var(--primary-dark);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 0.8rem;
    }

    .header-donate-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .donation-card {
        padding: 28px;
    }

    .story-card,
    .story-card.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .why-content,
    .regular-giving-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }

    .achievement-carousel-wrapper {
        gap: 16px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .achievement-card {
        min-width: 180px;
    }

    .modal-content {
        padding: 24px;
    }

    #modalTitle {
        font-size: 1.4rem;
    }

    #modalDescription {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}