* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #1a4731;
    --primary-dark: #0f2d1f;
    --secondary-color: #c9a227;
    --accent-color: #2d6a4f;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.navbar { background: white; box-shadow: var(--shadow-md); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--primary-color); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo { font-size: 22px; font-weight: 800; color: var(--primary-color); text-decoration: none; letter-spacing: 1px; }
.nav-menu { display: flex; list-style: none; gap: 32px; }
.nav-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; background: var(--primary-color); transition: width 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary-color); }

/* Hero Section */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(26, 71, 49, 0.92) 0%, rgba(201, 162, 39, 0.75) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 900px; padding: 80px 0; margin: 0 auto; }
.hero-title { font-size: 52px; font-weight: 800; margin-bottom: 24px; line-height: 1.15; }
.hero-subtitle { font-size: 19px; margin-bottom: 40px; opacity: 0.96; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; font-size: 16px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary { background: var(--secondary-color); color: var(--primary-dark); }
.btn-primary:hover { background: #b8921f; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: rgba(255, 255, 255, 0.2); color: white; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.btn-light { background: white; color: var(--primary-color); }
.btn-light:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary-color); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* Section Styles */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 750px; margin: 0 auto 60px; }
.section-header h2 { font-size: 40px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.section-subtitle { font-size: 18px; color: var(--text-medium); }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); color: white; padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; opacity: 0.94; }

/* Mission Section */
.mission { background: var(--bg-light); }
.mission-text { font-size: 18px; line-height: 1.9; color: var(--text-medium); text-align: center; max-width: 850px; margin: 0 auto; }

/* Services Preview */
.services-preview { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.service-card { background: var(--bg-light); padding: 36px; border-radius: 12px; border-top: 4px solid var(--primary-color); transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon { width: 60px; height: 60px; background: var(--primary-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: white; }
.service-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { color: var(--text-medium); line-height: 1.7; margin-bottom: 16px; }
.service-link { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.service-link:hover { text-decoration: underline; }

/* Programs Highlight */
.programs-highlight { background: var(--bg-light); }
.program-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.program-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.program-image img { width: 100%; height: 400px; object-fit: cover; }
.program-tag { display: inline-block; background: var(--secondary-color); color: var(--primary-dark); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.program-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.program-content p { color: var(--text-medium); margin-bottom: 24px; line-height: 1.8; }
.program-benefits { list-style: none; margin-bottom: 32px; }
.program-benefits li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--text-medium); }
.program-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: 700; }

/* Impact Section */
.impact { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: white; }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; text-align: center; }
.stat-number { font-size: 48px; font-weight: 800; margin-bottom: 10px; }
.stat-label { font-size: 18px; opacity: 0.94; }

/* Who We Help */
.who-we-help { background: white; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.help-card { background: var(--bg-light); padding: 32px; border-radius: 12px; text-align: center; border-bottom: 3px solid var(--primary-color); }
.help-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.help-card p { color: var(--text-medium); }

/* CTA Section */
.cta { background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); color: white; text-align: center; }
.cta-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 18px; margin-bottom: 32px; opacity: 0.96; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* About Page */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 24px; color: var(--text-dark); }
.about-content p { color: var(--text-medium); margin-bottom: 20px; line-height: 1.8; }
.about-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); border-left: 4px solid var(--primary-color); }
.value-card h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.value-card p { color: var(--text-medium); }

.mission-box { background: var(--primary-color); color: white; padding: 60px; border-radius: 16px; text-align: center; }
.mission-box h2 { font-size: 32px; margin-bottom: 20px; }
.mission-box p { font-size: 18px; line-height: 1.8; opacity: 0.96; }

.do-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.do-item { padding: 24px; }
.do-item h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.do-item p { color: var(--text-medium); line-height: 1.7; }

.partners-content { text-align: center; max-width: 800px; margin: 0 auto; }
.partners-content p { color: var(--text-medium); margin-bottom: 20px; line-height: 1.8; }

/* Services Page */
.intro-content { text-align: center; max-width: 800px; margin: 0 auto; }
.intro-text { font-size: 18px; color: var(--text-medium); line-height: 1.8; }

.service-detail { padding: 80px 0; }
.service-detail.alt-bg { background: var(--bg-light); }
.service-feature { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.service-feature.reverse { grid-template-columns: 1.2fr 1fr; }
.service-feature.reverse .service-image { order: 2; }
.service-image img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.service-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); }
.service-content h4 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--text-dark); }
.service-content p { color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.service-content ul { list-style: none; margin-bottom: 24px; }
.service-content ul li { padding: 6px 0; padding-left: 24px; position: relative; color: var(--text-medium); }
.service-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--primary-color); font-weight: 700; font-size: 18px; }

.eligibility { background: var(--bg-light); }
.eligibility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.eligibility-card { background: white; padding: 32px; border-radius: 12px; text-align: center; box-shadow: var(--shadow-md); }
.eligibility-card h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.eligibility-card p { color: var(--text-medium); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 24px; }
.step-number { width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.step p { color: var(--text-medium); }

/* Programs Page */
.program-hero-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.program-hero-image img { width: 100%; height: 400px; object-fit: cover; }
.program-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; }
.program-badge { display: inline-block; background: var(--secondary-color); color: var(--primary-dark); padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.program-hero-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.program-tagline { font-size: 18px; opacity: 0.94; }

.details-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.details-content h3 { font-size: 26px; font-weight: 700; margin: 32px 0 16px; color: var(--text-dark); }
.details-content h3:first-child { margin-top: 0; }
.details-content p { color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.benefit-list { list-style: none; margin: 16px 0 24px; }
.benefit-list li { padding: 12px 0; padding-left: 28px; position: relative; color: var(--text-medium); border-bottom: 1px solid #e5e7eb; }
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: 700; }

.sidebar-card { background: var(--bg-light); padding: 32px; border-radius: 12px; margin-bottom: 24px; }
.sidebar-card.alt { background: var(--primary-color); color: white; }
.sidebar-card.alt h4 { color: var(--secondary-color); }
.sidebar-card.alt p { opacity: 0.94; }
.sidebar-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.program-info { list-style: none; }
.program-info li { padding: 10px 0; border-bottom: 1px solid #e5e7eb; color: var(--text-medium); }
.program-info li:last-child { border-bottom: none; margin-bottom: 20px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.gallery-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; }
.gallery-item h4 { font-size: 18px; font-weight: 700; padding: 20px 20px 8px; color: var(--text-dark); }
.gallery-item p { padding: 0 20px 20px; color: var(--text-medium); font-size: 15px; }

.testimonial { background: var(--bg-light); }
.testimonial-content { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-content blockquote { font-size: 22px; font-style: italic; line-height: 1.8; color: var(--text-dark); margin-bottom: 24px; }
.testimonial-content cite { color: var(--primary-color); font-weight: 600; }

.other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.other-card { background: white; padding: 32px; border-radius: 12px; box-shadow: var(--shadow-md); }
.other-card h3 { font-size: 20px; font-weight: 700; color: var(--primary-color); margin-bottom: 12px; }
.other-card p { color: var(--text-medium); margin-bottom: 16px; }
.other-card a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.other-card a:hover { text-decoration: underline; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-form-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; color: var(--text-dark); }
.contact-form-section > p { color: var(--text-medium); margin-bottom: 32px; }

.contact-form { background: var(--bg-light); padding: 40px; border-radius: 16px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 16px; font-family: inherit; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-group textarea { resize: vertical; }

.info-card { background: var(--bg-light); padding: 32px; border-radius: 12px; margin-bottom: 24px; }
.info-card.urgent { background: #fef3c7; border-left: 4px solid var(--secondary-color); }
.info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
.info-item { display: flex; gap: 16px; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-item svg { flex-shrink: 0; color: var(--primary-color); }
.info-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.info-item p { color: var(--text-medium); font-size: 15px; }
.info-item a { color: var(--primary-color); text-decoration: none; }
.info-item a:hover { text-decoration: underline; }

.crisis-contacts { list-style: none; margin-top: 16px; }
.crisis-contacts li { padding: 8px 0; }
.crisis-contacts a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

.map-section { background: var(--bg-light); padding: 60px 0; }
.map-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 24px; text-align: center; }
.map-container { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* Footer */
.footer { background: var(--text-dark); color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--secondary-color); }
.footer-col p { color: rgba(255, 255, 255, 0.82); line-height: 1.7; font-size: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color 0.3s; font-size: 15px; }
.footer-col ul a:hover { color: white; }
.contact-list li { color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.charity-status { margin-top: 12px; font-size: 14px; color: var(--secondary-color); font-weight: 600; }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-bottom p { color: rgba(255, 255, 255, 0.65); font-size: 14px; }

/* Responsive */
@media (max-width: 968px) {
    .program-feature, .about-grid, .service-feature, .service-feature.reverse, .details-grid, .contact-grid { grid-template-columns: 1fr; }
    .service-feature.reverse .service-image { order: 0; }
    .hero-title { font-size: 38px; }
    .page-hero h1 { font-size: 36px; }
    section { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 32px; }
    .section-header h2 { font-size: 32px; }
    .hero { min-height: 500px; }
}
