* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --page-pad: clamp(16px, 3vw, 48px);
    --content-max: 1200px;
    --text-base: 16px;
}

body {
    background: #f9fafb;
    color: #222;
    font-size: var(--text-base);
    line-height: 1.5;
}

/* SITE NAV (shared across all pages) */
.site-nav {
    background: #fff;
    padding: 16px var(--page-pad);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Let the header stretch full width so the logo sits fully left */
    max-width: none;
    margin: 0;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    margin-right: auto;
}

.site-nav-icon {
    font-size: 28px;
    color: #22c55e;
}

.site-nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.site-nav-brand strong {
    font-size: 18px;
    color: #222;
}

.site-nav-brand span {
    font-size: 12px;
    color: #64748b;
}

.site-nav-links {
    display: flex;
    gap: 8px;
}

.site-nav-links a {
    text-decoration: none;
    color: #475569;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
}

.site-nav-links a:hover {
    color: #1e40af;
    background: #f1f5f9;
}

.site-nav-links a.active {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Legacy navbar (kept for backwards compatibility) */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: #fff;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar a {
    text-decoration: none;
    color: #333;
}

.navbar .active {
    background: #e8f0ff;
    padding: 6px 14px;
    border-radius: 8px;
}

/* HERO */
.hero {
    display: flex;
    padding: 80px var(--page-pad);
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    color: white;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 25px;
}

.buttons {
    margin-bottom: 30px;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
}

.primary {
    background: white;
    color: #2563eb;
}

.secondary {
    border: 1px solid white;
    color: white;
}

.stats {
    display: flex;
    gap: 30px;
}

.stats div span {
    display: block;
    font-size: 14px;
}

/* HERO IMAGE */
.hero-image {
    width: 50%;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

.donation-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #222;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
}

/* FEATURES */
.features {
    padding: 80px var(--page-pad);
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

/* STEPS */
.steps {
    padding: 60px var(--page-pad);
    text-align: center;
}

.step-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
}

.step span {
    display: block;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    margin: auto;
}

/* CTA */
.cta {
    padding: 60px var(--page-pad);
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    color: white;
    text-align: center;
}

/* FOOTER */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px var(--page-pad);
    display: flex;
    justify-content: space-between;
}

/* Global mobile responsiveness */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        gap: 28px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-grid {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .site-nav-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero-text h1 {
        font-size: 38px;
    }

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

    footer {
        flex-direction: column;
        gap: 24px;
    }
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

footer a:hover {
    color: #fff;
}

body {
    font-family: Arial;
    background: #f5f7fb;
}

.container {
    max-width: 1000px;
    margin: auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
}

.method {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
}

.location {
    background: #eef6ee;
    padding: 10px;
    margin-top: 8px;
    border-radius: 6px;
}

.dropoff {
    display: none;
}

.btn {
    background: black;
    color: white;
    padding: 10px;
}

.success {
    background: #dff0d8;
    padding: 10px;
}
