html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    background-color: #f5f1e8;
    color: #333333;
}

.text-center {
    padding-top: 80px;
}

    .text-center h1 {
        font-size: 60px;
        font-weight: bold;
    }

    .text-center h2 {
        margin-top: 20px;
        font-size: 28px;
    }

    .text-center p {
        max-width: 650px;
        margin: 25px auto;
        font-size: 18px;
        line-height: 1.7;
    }

    .text-center .btn {
        padding: 12px 30px;
        font-size: 18px;
        border-radius: 25px;
    }
/* Contact Page */

.contact-page {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

    .contact-page h1 {
        text-align: center;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .contact-page > p {
        text-align: center;
        margin-bottom: 35px;
        color: #666;
    }

    .contact-page label {
        font-weight: 600;
    }

    .contact-page .form-control {
        padding: 12px;
        border-radius: 8px;
    }

    .contact-page textarea {
        resize: vertical;
    }

    .contact-page .btn {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 600;
    }
/* =========================
   HOME PAGE HERO
   ========================= */

.hero-section {
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 78px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        min-width: 150px;
        padding: 13px 28px;
        border-radius: 30px;
        font-size: 17px;
        font-weight: 600;
    }
/* =========================
   OUR MISSION SECTION
   ========================= */

.mission-section {
    padding: 100px 25px;
    background-color: #ffffff;
}

.mission-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.mission-content h2 {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
}

.mission-content p {
    max-width: 750px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.mission-content .btn {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 17px;
}
/* =========================
   WHAT WE DO SECTION
   ========================= */

.services-section {
    padding: 100px 25px;
    background-color: #f5f1e8;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

    .services-container h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 20px;
    }

.services-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    }

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px 25px;
    }
}
/* =========================
   GET INVOLVED SECTION
   ========================= */

.involved-section {
    padding: 100px 25px;
    background-color: #ffffff;
}

.involved-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

    .involved-container h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 20px;
    }

.involved-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.involved-card {
    padding: 40px 30px;
    border: 1px solid #e4e4e4;
    border-radius: 18px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.involved-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.involved-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.involved-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.involved-card .btn {
    margin-top: auto;
    padding: 11px 25px;
    border-radius: 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .involved-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   DONATE CALL TO ACTION
   ========================= */

.donate-cta {
    padding: 100px 25px;
    background-color: #222222;
    color: #ffffff;
    text-align: center;
}

.donate-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-cta .section-label {
    color: #ddd;
}

.donate-cta h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 25px;
}

.donate-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #dddddd;
}

.donate-cta .btn {
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
}
/* =========================
   SITE FOOTER
   ========================= */

.site-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 55px 25px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 35px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    margin: 0;
    color: #bbbbbb;
}

.footer-links {
    display: flex;
    gap: 25px;
}

    .footer-links a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        color: #aaaaaa;
    }

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* =========================
   MAIN NAVIGATION
   ========================= */

.navbar {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #ffffff !important;
}

.navbar-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 9px 14px !important;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

    .navbar .nav-link:hover {
        background-color: #f5f1e8;
    }

.nav-donate-btn {
    padding: 9px 22px;
    border-radius: 25px;
    font-weight: 700;
}

/* Mobile navigation */
@media (max-width: 991px) {
    .navbar-nav {
        align-items: stretch;
        padding-top: 15px;
        gap: 5px;
    }

    .navbar .nav-link {
        text-align: center;
    }

    .nav-donate-btn {
        display: block;
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
}
/* =========================
   VOLUNTEER PAGE
   ========================= */

.volunteer-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.volunteer-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.volunteer-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.volunteer-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.volunteer-info {
    padding: 90px 25px;
    background-color: #ffffff;
}

.volunteer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.volunteer-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

    .volunteer-intro h2 {
        font-size: clamp(32px, 5vw, 46px);
        font-weight: 700;
        margin-bottom: 20px;
    }

    .volunteer-intro p {
        font-size: 18px;
        line-height: 1.7;
        color: #666;
    }

.volunteer-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.volunteer-option {
    padding: 40px 30px;
    text-align: center;
    background-color: #f5f1e8;
    border-radius: 18px;
}

.volunteer-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.volunteer-option h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.volunteer-option p {
    color: #666;
    line-height: 1.7;
}

.volunteer-action {
    max-width: 750px;
    margin: 70px auto 0;
    text-align: center;
}

    .volunteer-action h2 {
        font-size: 36px;
        font-weight: 700;
    }

    .volunteer-action p {
        margin: 15px 0 25px;
        font-size: 18px;
        color: #666;
    }

    .volunteer-action .btn {
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
    }

.volunteer-application {
    padding: 90px 25px;
    background-color: #f5f1e8;
}

.volunteer-form-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

    .volunteer-form-container h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .volunteer-form-container > p {
        font-size: 18px;
        line-height: 1.7;
        color: #666;
    }

@media (max-width: 768px) {
    .volunteer-options {
        grid-template-columns: 1fr;
    }
}
/* =========================
   VOLUNTEER APPLICATION FORM
   ========================= */

.volunteer-form {
    margin-top: 40px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
}

    .volunteer-form .form-label {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .volunteer-form .form-control,
    .volunteer-form .form-select {
        padding: 12px;
        border-radius: 8px;
    }

    .volunteer-form textarea {
        resize: vertical;
    }

    .volunteer-form .btn {
        width: 100%;
        margin-top: 10px;
        padding: 13px 25px;
        border-radius: 30px;
        font-size: 17px;
        font-weight: 700;
    }

@media (max-width: 576px) {
    .volunteer-form {
        padding: 25px 20px;
    }
}
/* =========================
   DONATE PAGE
   ========================= */

.donate-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.donate-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.donate-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.donate-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.donation-section {
    padding: 100px 25px;
    background-color: #ffffff;
}

.donation-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

    .donation-container h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 20px;
    }

.donation-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.donation-card {
    position: relative;
    padding: 45px 30px;
    border: 2px solid #eeeeee;
    border-radius: 18px;
    background-color: #ffffff;
}

    .donation-card h3 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .donation-card p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

.featured-donation {
    border-color: #222222;
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.donation-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #222222;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.custom-donation {
    max-width: 650px;
    margin: 65px auto 0;
    padding: 40px;
    background-color: #f5f1e8;
    border-radius: 18px;
}

    .custom-donation h3 {
        font-size: 28px;
        font-weight: 700;
    }

    .custom-donation p {
        color: #666;
        line-height: 1.7;
    }

    .custom-donation .btn {
        margin-top: 10px;
        padding: 13px 30px;
        border-radius: 30px;
    }

.secure-donation-note {
    margin: 15px 0 0 !important;
    font-size: 14px;
}

.donation-impact {
    padding: 100px 25px;
    background-color: #f5f1e8;
    text-align: center;
}

.donation-impact-content {
    max-width: 750px;
    margin: 0 auto;
}

.donation-impact h2 {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 25px;
}

.donation-impact p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.donation-impact .btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .donation-options {
        grid-template-columns: 1fr;
    }

    .featured-donation {
        transform: none;
    }

    .custom-donation {
        padding: 30px 20px;
    }
}
/* =========================
   DONATION PAYMENT OPTIONS
   ========================= */

.payment-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.payment-btn {
    min-width: 200px;
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

    .payment-btn:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }

@media (max-width: 576px) {
    .payment-options {
        flex-direction: column;
    }

    .payment-btn {
        width: 100%;
    }
}
/* =========================
   PROGRAMS PAGE
   ========================= */

.programs-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.programs-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.programs-section {
    padding: 100px 25px;
    background-color: #ffffff;
}

.programs-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

    .programs-container h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 20px;
    }

.programs-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.program-card {
    padding: 40px 30px;
    background-color: #f5f1e8;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .program-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
    }

.program-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-card p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.programs-cta {
    padding: 100px 25px;
    background-color: #222222;
    color: #ffffff;
    text-align: center;
}

.programs-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-cta .section-label {
    color: #ddd;
}

.programs-cta h2 {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 700;
    margin-bottom: 25px;
}

.programs-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.programs-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .programs-cta-buttons .btn {
        min-width: 150px;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 700;
    }

@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.about-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* Our Story */

.about-story {
    padding: 100px 25px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-story-content {
    max-width: 800px;
    margin: 0 auto;
}

    .about-story-content h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 30px;
    }

    .about-story-content p {
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

/* Values */

.about-values {
    padding: 100px 25px;
    background-color: #f5f1e8;
    text-align: center;
}

    .about-values h2 {
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 50px;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background-color: #ffffff;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
    }

.value-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Mission */

.about-mission {
    padding: 100px 25px;
    background-color: #222222;
    color: #ffffff;
    text-align: center;
}

.about-mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-mission .section-label {
    color: #ddd;
}

.about-mission h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 25px;
}

.about-mission p {
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .about-buttons .btn {
        min-width: 160px;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 700;
    }

/* Mobile */

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .about-story,
    .about-values,
    .about-mission {
        padding: 70px 20px;
    }
}
/* =========================
   CONTACT PAGE HERO
   ========================= */

.contact-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 70px 20px;
    }
}
/* =========================
   FAQ PAGE
   ========================= */

.faq-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.faq-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.faq-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* FAQ Questions */

.faq-section {
    padding: 100px 25px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

    .faq-container > .section-label {
        text-align: center;
    }

    .faq-container > h2 {
        text-align: center;
        font-size: clamp(34px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: 50px;
    }

    .faq-container .accordion {
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

    .faq-container .accordion-item {
        border-left: none;
        border-right: none;
    }

    .faq-container .accordion-button {
        padding: 22px 25px;
        font-size: 18px;
        font-weight: 700;
    }

        .faq-container .accordion-button:not(.collapsed) {
            color: #222;
            background-color: #f5f1e8;
            box-shadow: none;
        }

        .faq-container .accordion-button:focus {
            box-shadow: none;
            border-color: #ddd;
        }

    .faq-container .accordion-body {
        padding: 22px 25px;
        font-size: 16px;
        line-height: 1.8;
        color: #555;
    }

/* FAQ Contact Box */

.faq-contact {
    margin-top: 70px;
    padding: 50px 30px;
    text-align: center;
    background-color: #f5f1e8;
    border-radius: 18px;
}

    .faq-contact h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .faq-contact p {
        max-width: 600px;
        margin: 0 auto 25px;
        font-size: 17px;
        line-height: 1.7;
        color: #666;
    }

    .faq-contact .btn {
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 700;
    }

/* Mobile */

@media (max-width: 768px) {
    .faq-hero,
    .faq-section {
        padding: 70px 20px;
    }

    .faq-container .accordion-button {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-contact {
        padding: 40px 20px;
    }
}
/* =========================
   PRIVACY POLICY PAGE
   ========================= */

.privacy-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.privacy-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* Policy Content */

.privacy-section {
    padding: 90px 25px;
    background-color: #ffffff;
}

.privacy-container {
    max-width: 850px;
    margin: 0 auto;
}

.privacy-updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 600;
}

.privacy-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.privacy-container .btn {
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 70px 20px;
    }

    .privacy-section {
        padding: 60px 20px;
    }

    .privacy-container h2 {
        font-size: 23px;
    }
}
/* =========================
   TERMS OF USE PAGE
   ========================= */

.terms-hero {
    padding: 100px 25px;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.terms-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-hero h1 {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    margin-bottom: 25px;
}

.terms-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

/* Terms Content */

.terms-section {
    padding: 90px 25px;
    background-color: #ffffff;
}

.terms-container {
    max-width: 850px;
    margin: 0 auto;
}

.terms-updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 600;
}

.terms-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.terms-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.terms-container .btn {
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
}

/* Mobile */

@media (max-width: 768px) {
    .terms-hero {
        padding: 70px 20px;
    }

    .terms-section {
        padding: 60px 20px;
    }

    .terms-container h2 {
        font-size: 23px;
    }
}
/* =========================
   404 PAGE
   ========================= */

.notfound-page {
    min-height: 75vh;
    padding: 100px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient( 135deg, #f5f1e8 0%, #ffffff 50%, #eee7d8 100% );
}

.notfound-content {
    max-width: 750px;
    margin: 0 auto;
}

.notfound-number {
    margin: 0;
    font-size: clamp(90px, 15vw, 160px);
    line-height: 1;
    font-weight: 900;
    color: #222;
    opacity: 0.12;
}

.notfound-page h1 {
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 800;
    margin-bottom: 25px;
}

.notfound-message {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.notfound-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .notfound-buttons .btn {
        min-width: 160px;
        padding: 12px 28px;
        border-radius: 30px;
        font-weight: 700;
    }

@media (max-width: 576px) {
    .notfound-page {
        padding: 70px 20px;
    }

    .notfound-buttons {
        flex-direction: column;
    }

        .notfound-buttons .btn {
            width: 100%;
        }
}
/* =========================
   FOOTER LEGAL LINKS
   ========================= */

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

    .footer-legal a {
        color: #aaa;
        font-size: 14px;
        text-decoration: none;
    }

        .footer-legal a:hover {
            color: #fff;
            text-decoration: underline;
        }

    .footer-legal span {
        color: #555;
    }
/* =========================
   NAVIGATION POLISH
   ========================= */

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #222;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .brand-text strong {
        color: #222;
        font-size: 18px;
        font-weight: 800;
    }

    .brand-text small {
        margin-top: 4px;
        color: #777;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.navbar .nav-link.active-page {
    background-color: #f5f1e8;
    color: #111 !important;
    font-weight: 800;
}

.navbar-toggler {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 10px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width: 991px) {

    .navbar-collapse {
        padding-top: 15px;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar .nav-link {
        width: 100%;
        padding: 12px 15px !important;
    }

    .brand-text small {
        display: none;
    }
}

@media (max-width: 420px) {

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .brand-text strong {
        font-size: 15px;
    }
}
.nav-donate-btn.donate-active {
    outline: 3px solid #d8cdb8;
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

    .skip-link:focus {
        top: 0;
        color: #fff;
    }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #222;
    outline-offset: 3px;
}