* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-brown: #2C1810;
    --secondary-brown: #4A2C1F;
    --accent-brown: #6D4C3D;
    --golden: #D4AF37;
    --golden-light: #F4E4B0;
    --golden-dark: #B8941F;
    --forest-green: #1B5E20;
    --emerald: #2E7D32;
    --lime-green: #7CB342;
    --mint: #C8E6C9;
    --cream: #FFF9E6;
    --ivory: #FFFFF0;
    --warm-white: #FAF7F2;
    --text-dark: #1A1A1A;
    --text-light: #F5F5F5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--warm-white);
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {

    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--golden), var(--primary-brown));
    padding: 1.2rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--golden);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}



@media (max-width: 768px) {


    .navbar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-menu {
        display: flex;
        /* SHOW the hamburger on mobile */
    }


    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: linear-gradient(135deg, rgba(44, 24, 16, 0.98), rgba(74, 44, 31, 0.98));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    /* --- Hamburger Animation (to "X") --- */
    .hamburger-menu.active .hamburger-bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger-menu.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}


.navbar.scrolled {
    padding: 0.8rem 6%;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.logo img {
    max-height: 40px;
    /* Or whatever fixed size you want */
    width: auto;
    padding-left: 1.5rem;
}


.logo:hover {
    transform: scale(1.05);
}


.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}


.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--golden), var(--emerald));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}


.nav-links a:hover {
    color: var(--golden-light);
}


.nav-links a:hover::after {
    width: 100%;
}


.navbar .donate-btn {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.98), rgba(74, 44, 31, 0.98));
    color: var(--warm-white);
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    font-family: 'Poppins', sans-serif;
}

.navbar .donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
    color: var(--warm-white);
}


/* Hero */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 50%, var(--forest-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.6;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-30px) translateY(-10px);
    }
}

.hero-content {
    max-width: 1000px;
    padding: 4rem 6%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--golden-light);
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections */
section {
    padding: 6rem 6%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--emerald);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--accent-brown);
    max-width: 900px;
    margin: 0 auto;
}

/* Why Donate */
.why-donate {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--accent-brown);
}

/* Impact */
.impact {
    background: var(--warm-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--golden), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--accent-brown);
}

/* Donation Methods */
.methods {
    background: linear-gradient(135deg, var(--ivory), #fff);
}

.methods-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.account-card {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.account-card h3 {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.account-list {
    list-style: none;
    color: var(--accent-brown);
}

.account-list li {
    margin-bottom: 0.75rem;
}

.qr-card {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.qr-card img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.qr-placeholder {
    width: 100%;
    max-width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: #fff;
    font-weight: 700;
}

/* FAQs */
/* Featured Initiatives (image placeholders) */
.initiatives {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.initiative-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.initiative-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.initiative-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
}

.initiative-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    /* Add this to be safe */

    /* The original CSS had a background gradient here,
     but your <img> tag will cover it, so it's not needed. */
}

/* THIS IS THE FIX:
  We must style the <img> tag *inside* the wrapper.
*/
.initiative-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This is the key: it makes the image fill
                        the 16/9 box without stretching. */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Now, the hover effect zooms the IMAGE, not the container,
  which is a much cleaner effect.
*/
.initiative-card:hover .initiative-img img {
    transform: scale(1.05);
    /* Zoom the image */
    filter: brightness(1.05);
}

.initiative-body {
    padding: 1.5rem;
}

.initiative-body h3 {
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.initiative-body p {
    color: var(--accent-brown);
}

.faqs {
    background: var(--warm-white);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--accent-brown);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--primary-brown);
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
    font-weight: 700;
    cursor: pointer;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(212, 175, 55, 0.55);
}

/* Reveal on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.modal {
    background: #fff;
    border-radius: 24px;
    max-width: 900px;
    width: 92%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: #fff;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.modal-account h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-brown);
}

.modal-account ul {
    list-style: none;
    color: var(--accent-brown);
}

.modal-account li {
    margin-bottom: 0.5rem;
}

.modal-qr {
    text-align: center;
}

.modal-qr img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.modal-qr .qr-placeholder {
    width: 100%;
    max-width: 260px;
    height: 260px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-about {
    flex: 2 1 300px;
}

.footer-reports {
    flex: 2 1 100%;
}

.footer h3 {
    color: var(--golden-light);
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
}



/* Footer */
footer {
    background: var(--primary-brown);
    color: white;
    padding: 5rem 6% 2rem;
    position: relative;
}


.footer-section h3 {
    color: var(--golden);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--golden);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item i {
    color: var(--golden);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
}



/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .initiative-grid {
        grid-template-columns: 1fr 1fr;
    }

    .methods-grid,
    .modal-body {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 6%;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .sticky-cta {
        right: 16px;
        bottom: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width:640px) {
    .logo {
        font-size: 1.8rem;
    }


    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-about p,
    .footer-section a {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }

}

/* Footer Reports Grid */
.footer-reports {
    flex: 2;
    min-width: 300px;
}

.reports-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.report-card:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
    transform: translateY(-2px);
}

.report-card i {
    font-size: 1.25rem;
    color: var(--golden-light);
}

.report-card span {
    flex: 1;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
}
/* Donation Tiers Section */
.donation-tiers {
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tier-card.featured {
    border-color: var(--golden);
    background: linear-gradient(180deg, white 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
}

.tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--primary-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.tier-icon i {
    font-size: 2rem;
    color: white;
}

.tier-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.tier-card h3 {
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.tier-card p {
    color: var(--accent-brown);
    line-height: 1.7;
}

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

.tiers-footer p {
    font-size: 1.2rem;
    color: var(--accent-brown);
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--golden);
}

.tiers-footer i {
    color: var(--golden);
    margin-right: 0.5rem;
}

/* Receipt Note */
.receipt-note {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--golden);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.receipt-note i {
    color: var(--golden);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.receipt-note p {
    color: var(--accent-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.receipt-note a {
    color: var(--emerald);
    font-weight: 600;
    text-decoration: none;
}

.receipt-note a:hover {
    text-decoration: underline;
}

/* FAQ Links */
.faq-item a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Responsive Tiers */
@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tier-card.featured {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        grid-column: span 1;
        max-width: none;
    }
    
    .tier-amount {
        font-size: 2rem;
    }
}
