/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Minion Pro', 'EB Garamond', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== THEME: LIGHT (default) ===== */
:root,
[data-theme="light"] {
    --vert: #257b3a;
    --vert-light: #2d9e4a;
    --vert-pale: #e8f3ea;
    --or: #ff6600;
    --or-light: #ff944d;
    --or-pale: #fff0e0;
    --dark: #1a2a1a;
    --gray: #6a7a6a;
    --light-bg: #f8faf8;
    --bg: #fafcfa;
    --text: #1a2a1a;
    --text-soft: #4a5a4a;
    --surface: #ffffff;
    --surface-muted: #f0f4f0;
    --border: rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.03);
    --shadow-hover: 0 20px 50px rgba(37, 123, 58, 0.08);
    --nav-blur: rgba(255, 255, 255, 0.72);
    --card-bg: #ffffff;
    --footer-bg: #0f1a0f;
    --footer-text: #9ab09a;
    --footer-border: rgba(255,255,255,0.03);
}

/* ===== THEME: DARK ===== */
[data-theme="dark"] {
    --vert: #257b3a;
    --vert-light: #2d9e4a;
    --vert-pale: #1a2e1a;
    --or: #ff6600;
    --or-light: #cc5200;
    --or-pale: #2a1a0f;
    --dark: #e8ede8;
    --gray: #9aa8a0;
    --light-bg: #1a221a;
    --bg: #0f150f;
    --text: #e8ede8;
    --text-soft: #9aa8a0;
    --surface: #1a221a;
    --surface-muted: #1f2a1f;
    --border: rgba(255,255,255,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.2);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.3);
    --nav-blur: rgba(15, 21, 15, 0.85);
    --card-bg: #1a221a;
    --footer-bg: #0a0f0a;
    --footer-text: #6a8a6a;
    --footer-border: rgba(255,255,255,0.03);
}

body {
    background: var(--bg);
    color: var(--text);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    padding: 4px 8px;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.scrolled .theme-toggle {
    color: var(--text);
}
.theme-toggle:hover {
    color: var(--or);
}

/* ===== COLOR ACCENTS ===== */
.text-vert { color: var(--vert); }
.text-or { color: var(--or); }

/* ===== NAVBAR ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}
header.scrolled {
    background: var(--nav-blur);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}
header.scrolled .logo {
    color: var(--text);
}
.logo span { color: var(--or); }
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    transition: 0.3s;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
header.scrolled .nav-links a {
    color: var(--text);
}
.nav-links a:hover {
    color: var(--or);
    border-bottom-color: var(--or);
}
header.scrolled .nav-links a:hover {
    color: var(--vert);
    border-bottom-color: var(--vert);
}
.nav-links .don-btn {
    background: var(--or);
    color: #1a2a1a !important;
    padding: 10px 28px;
    border-radius: 60px;
    font-weight: 700;
    border: none !important;
    transition: 0.3s;
}
.nav-links .don-btn:hover {
    background: var(--vert);
    color: #fff !important;
    transform: scale(1.03);
}
header.scrolled .nav-links .don-btn {
    color: #1a2a1a !important;
}
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    background: none;
    border: none;
    padding: 4px 8px;
    z-index: 1001;
}
header.scrolled .menu-toggle {
    color: var(--text);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #0f1f0f;
}
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide .bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(1.1);
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-slide.active .bg-image {
    transform: scale(1);
}
.hero-slide .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 10, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}
.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.08;
    margin-bottom: 16px;
}
.hero-content h1 .highlight {
    color: var(--or);
    position: relative;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 300;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}
.hero-indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.4s;
}
.hero-indicators span.active {
    background: var(--or);
    width: 36px;
    border-radius: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--or);
    color: #1a2a1a;
    padding: 14px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover {
    background: #fff;
    color: var(--vert);
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 36px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}
.btn-subtle {
    background: transparent;
    color: var(--vert);
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    border: 1px solid rgba(37, 123, 58, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-subtle:hover {
    background: var(--vert);
    color: #fff;
    border-color: var(--vert);
}
.btn-subtle-or {
    background: transparent;
    color: #b85a00;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 102, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-subtle-or:hover {
    background: var(--or);
    color: #1a2a1a;
    border-color: var(--or);
}
.btn-back {
    background: transparent;
    color: var(--gray);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-back:hover {
    background: var(--dark);
    color: var(--bg);
    border-color: var(--dark);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 12px;
}
.section-sub {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: var(--text-soft);
    font-size: 1.1rem;
}
.section-header-link {
    text-align: center;
    margin-top: 32px;
}
.page-header {
    padding: 120px 0 60px;
    background: var(--dark);
    color: #fff;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}
.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 20px 12px;
    border-radius: 20px;
    background: var(--surface);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    transition: 0.3s;
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--vert);
    letter-spacing: -1px;
}
.stat-label {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 500;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.card {
    border-radius: 0;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 123, 58, 0.15);
}
.card-img {
    width: 100%;
    flex: 0 0 50%;
    object-fit: cover;
}
.card-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}
.card-body p {
    color: var(--text-soft);
    font-size: 0.85rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.card-body .tag {
    display: inline-block;
    background: var(--or-pale);
    color: #b85a00;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    align-self: flex-start;
}
.card-footer {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}

/* ===== IMPACT ===== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.impact-item {
    text-align: center;
    padding: 28px 16px;
    border-radius: 24px;
    background: var(--surface);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    transition: 0.3s;
}
.impact-item:hover {
    background: var(--surface-muted);
}
.impact-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--or);
    letter-spacing: -1px;
}
.impact-item .label {
    font-weight: 500;
    color: var(--text-soft);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info h2 {
    text-align: left;
}
.contact-info p {
    margin: 12px 0;
    font-size: 1.05rem;
}
.contact-info i {
    width: 28px;
    color: var(--vert);
}
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}
.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text);
    transition: 0.3s;
}
.social-icons a:hover {
    background: var(--vert);
    color: #fff;
    transform: translateY(-4px);
}
.form-card {
    background: var(--surface);
    padding: 36px 32px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--light-bg);
    font-size: 1rem;
    font-family: 'Minion Pro', 'EB Garamond', Georgia, serif;
    transition: 0.3s;
    color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vert);
    box-shadow: 0 0 0 3px rgba(37, 123, 58, 0.08);
    background: var(--surface);
}

/* ===== DON ===== */
.don-section {
    background: var(--footer-bg);
    color: #fff;
}
.don-section .section-title { color: #fff; }
.don-section .section-sub { color: rgba(255,255,255,0.7); }
.don-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 28px;
}
.don-options button {
    padding: 10px 28px;
    border-radius: 60px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Minion Pro', 'EB Garamond', Georgia, serif;
}
.don-options button:hover {
    border-color: var(--or);
    color: var(--or);
}
.don-options button.active {
    background: var(--or);
    border-color: var(--or);
    color: var(--dark);
}
.don-box {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.don-box .btn-primary {
    width: 100%;
    margin-top: 12px;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: 0.4s;
}
.gallery-item:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
/* ===== GALLERY MODAL ===== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gallery-modal.is-open {
    display: flex;
}
.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-modal-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 0;
    display: block;
}
.gallery-modal-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    line-height: 1.4;
}
.gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 4px 12px;
    line-height: 1;
    opacity: 0.7;
    transition: 0.3s;
}
.gallery-modal-close:hover {
    opacity: 1;
}

/* ===== DETAIL PAGES ===== */
.detail-content {
    max-width: 800px;
    margin: 0 auto;
}
.detail-content .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 28px;
    margin-bottom: 32px;
}
.detail-content .meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 24px 0 12px;
}
.detail-content p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.detail-content ul {
    margin: 16px 0 24px 24px;
    color: var(--text-soft);
}
.detail-content ul li {
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 48px 0 24px;
    border-top: 1px solid var(--footer-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}
.footer-grid h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}
.footer-grid a {
    display: block;
    color: var(--footer-text);
    transition: 0.3s;
    margin: 4px 0;
    font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--or); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 24px;
    font-size: 0.85rem;
    color: #6a8a6a;
}

/* ===== DON MODAL ===== */
.don-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.don-modal {
    background: var(--surface);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 36px 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.don-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--gray);
    padding: 4px 8px;
}
.don-modal-close:hover { color: var(--text); }
.don-method {
    margin-bottom: 20px;
    padding: 16px;
    background: var(--surface-muted);
    border-radius: 12px;
}
.don-method h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}
.don-method h3 i { color: var(--or); }
.don-table {
    width: 100%;
    border-collapse: collapse;
}
.don-table td {
    padding: 6px 0;
    font-size: 0.9rem;
    vertical-align: top;
}
.don-table td:first-child {
    color: var(--gray);
    width: 120px;
    font-weight: 500;
}
.don-table td:last-child {
    color: var(--text);
    font-weight: 600;
    word-break: break-all;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.team-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: 0.3s;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.team-photo-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid var(--or);
    padding: 3px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--vert);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
}
.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.team-role {
    font-size: 0.9rem;
    color: var(--or);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header h1 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
        position: relative;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 24px;
        right: 24px;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-radius: 20px;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        margin-top: 8px;
    }
    .nav-links.open { 
        display: flex; 
    }
    .nav-links a {
        color: var(--text) !important;
        font-size: 1rem;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links .don-btn {
        background: var(--or);
        color: #1a2a1a !important;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
    }
    header.scrolled .nav-links {
        background: var(--surface);
    }
    .hero-content h1 { font-size: 2.4rem; }
    .hero { min-height: 600px; height: 90vh; }
    .section-title { font-size: 2rem; }
    .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .don-options button { padding: 8px 18px; font-size: 0.85rem; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .detail-content .featured-image { height: 250px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 1rem; }
    .btn-primary, .btn-outline { padding: 10px 24px; font-size: 0.9rem; }
    .stat-number { font-size: 2rem; }
    .impact-item .number { font-size: 2.2rem; }
    .cards-grid { max-width: 100%; }
    .team-grid { grid-template-columns: 1fr; }
}
