* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #0891b2;
    --primary-dark: #0e7490;
    --secondary-color: #059669;
    --accent-color: #06b6d4;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --bg-light: #f0fdfa;
    --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; }
.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: 19px; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.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 { 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(8, 145, 178, 0.88) 0%, rgba(5, 150, 105, 0.80) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 850px; 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; }
.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; }
.btn-primary { background: var(--secondary-color); color: white; }
.btn-primary:hover { background: #047857; 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); }
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); }
.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; }
.who-we-help { background: white; }
.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.help-card { background: var(--bg-light); padding: 36px 28px; border-radius: 12px; border-top: 4px solid var(--primary-color); transition: all 0.3s; }
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.help-card h3 { font-size: 22px; font-weight: 700; color: var(--primary-color); margin-bottom: 14px; }
.help-card p { color: var(--text-medium); line-height: 1.7; }
.how-we-help { background: var(--bg-light); }
.help-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.method-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); transition: all 0.3s; }
.method-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.method-image { width: 100%; height: 240px; overflow: hidden; }
.method-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.method-card:hover .method-image img { transform: scale(1.08); }
.method-content { padding: 32px; }
.method-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.method-content p { color: var(--text-medium); }
.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; }
.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; }
.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(--accent-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(--accent-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; }
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 66px; left: -100%; width: 100%; height: calc(100vh - 66px); background: white; flex-direction: column; padding: 40px 24px; gap: 24px; transition: left 0.3s; box-shadow: var(--shadow-lg); align-items: flex-start; }
    .hero-title { font-size: 38px; }
    section { padding: 60px 0; }
}
