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

body { font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.6; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.nav { background: #fff; border-bottom: 1px solid #e5e5e5; position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; }
.logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #0f4c75; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { text-decoration: none; color: #4a4a4a; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #0f4c75; }

.hero { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,76,117,0.85) 0%, rgba(15,76,117,0.6) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.hero h1 { font-size: 56px; margin-bottom: 20px; }
.hero-subtitle { font-size: 20px; margin-bottom: 32px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; }

.btn { display: inline-block; padding: 14px 32px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: 2px solid transparent; }
.btn-primary { background: #0f4c75; color: #fff; }
.btn-primary:hover { background: #0d3f5f; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(15,76,117,0.3); }
.btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background: #fff; color: #0f4c75; }
.btn-outline { background: transparent; color: #0f4c75; border-color: #0f4c75; }
.btn-outline:hover { background: #0f4c75; color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

.stats { background: #f8f9fa; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 48px; font-weight: 700; color: #0f4c75; margin-bottom: 8px; }
.stat-label { color: #666; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

.mission { padding: 100px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission h2 { font-size: 42px; margin-bottom: 24px; color: #0f4c75; }
.mission p { margin-bottom: 20px; color: #4a4a4a; font-size: 16px; }
.mission-image img { width: 100%; border-radius: 8px; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.link-arrow { color: #0f4c75; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 8px; }
.link-arrow:hover { text-decoration: underline; }

.focus-areas { padding: 80px 0; background: #f8f9fa; }
.section-title { font-size: 42px; text-align: center; margin-bottom: 60px; color: #0f4c75; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.area-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.area-icon { font-size: 32px; font-weight: 700; color: #0f4c75; margin-bottom: 16px; }
.area-card h3 { font-size: 24px; margin-bottom: 12px; }
.area-card p { color: #666; }

.partners { padding: 80px 0; }
.partners-logos { margin: 40px 0; }
.partners-img { width: 100%; border-radius: 8px; opacity: 0.7; }
.partners-text { text-align: center; color: #666; max-width: 700px; margin: 0 auto; }

.cta-section { padding: 80px 0; background: linear-gradient(135deg, #0f4c75 0%, #1a5c8a 100%); }
.cta-box { text-align: center; color: #fff; }
.cta-box h2 { font-size: 42px; margin-bottom: 20px; }
.cta-box p { font-size: 18px; margin-bottom: 32px; opacity: 0.95; }
.cta-box .btn-primary { background: #fff; color: #0f4c75; }
.cta-box .btn-primary:hover { background: #f0f0f0; }

.footer { background: #1a1a1a; color: #999; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 16px; }
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: #999; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 14px; }

.page-header { background: linear-gradient(135deg, #0f4c75 0%, #1a5c8a 100%); color: #fff; padding: 80px 0 60px; text-align: center; }
.page-header h1 { font-size: 48px; margin-bottom: 16px; }
.page-header p { font-size: 18px; opacity: 0.95; }

.membership-intro { padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-text h2 { font-size: 38px; margin-bottom: 24px; color: #0f4c75; }
.intro-text p { margin-bottom: 20px; color: #4a4a4a; }
.intro-image img { width: 100%; border-radius: 8px; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

.benefits { padding: 80px 0; background: #f8f9fa; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit-card { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.benefit-card h3 { font-size: 24px; margin-bottom: 20px; color: #0f4c75; }
.benefit-list { list-style: none; }
.benefit-list li { padding: 10px 0; border-bottom: 1px solid #e5e5e5; color: #4a4a4a; }
.benefit-list li:last-child { border-bottom: none; }

.tiers { padding: 80px 0; }
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tier-card { background: #fff; border: 2px solid #e5e5e5; border-radius: 8px; overflow: hidden; transition: all 0.3s; }
.tier-card:hover { border-color: #0f4c75; transform: translateY(-4px); }
.tier-featured { border-color: #0f4c75; box-shadow: 0 8px 24px rgba(15,76,117,0.15); }
.tier-header { background: #f8f9fa; padding: 32px; text-align: center; }
.tier-featured .tier-header { background: #0f4c75; color: #fff; }
.tier-card h3 { font-size: 24px; margin-bottom: 12px; }
.tier-price { font-size: 32px; font-weight: 700; }
.tier-body { padding: 32px; }
.tier-desc { color: #666; margin-bottom: 24px; }
.tier-features { list-style: none; margin-bottom: 24px; }
.tier-features li { padding: 10px 0; border-bottom: 1px solid #e5e5e5; }
.tier-features li:last-child { border-bottom: none; }
.tier-card .btn { width: 100%; text-align: center; }

.application { padding: 80px 0; background: #f8f9fa; }
.application-box { background: #fff; padding: 60px; border-radius: 8px; text-align: center; max-width: 900px; margin: 0 auto; }
.application-box h2 { font-size: 38px; margin-bottom: 20px; color: #0f4c75; }
.application-box > p { margin-bottom: 40px; color: #666; }
.application-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.step { text-align: center; }
.step-num { width: 50px; height: 50px; background: #0f4c75; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; margin: 0 auto 12px; }
.step-text { font-size: 14px; color: #666; }

.upcoming { padding: 80px 0; }
.events-list { display: flex; flex-direction: column; gap: 32px; }
.event-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 8px; padding: 32px; display: grid; grid-template-columns: 120px 1fr; gap: 32px; transition: all 0.3s; }
.event-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.event-date { text-align: center; padding: 20px; background: #f8f9fa; border-radius: 6px; }
.date-day { font-size: 36px; font-weight: 700; color: #0f4c75; }
.date-month { font-size: 14px; text-transform: uppercase; color: #666; margin-top: 4px; }
.event-content h3 { font-size: 24px; margin-bottom: 8px; }
.event-location { color: #0f4c75; font-weight: 600; margin-bottom: 12px; }
.event-desc { color: #666; margin-bottom: 16px; }
.event-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.event-meta span { background: #f8f9fa; padding: 6px 12px; border-radius: 4px; font-size: 13px; color: #666; }

.education-programs { padding: 80px 0; background: #f8f9fa; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.program-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.program-card img { width: 100%; height: 200px; object-fit: cover; }
.program-content { padding: 32px; }
.program-content h3 { font-size: 22px; margin-bottom: 12px; color: #0f4c75; }
.program-content p { color: #666; margin-bottom: 16px; }

.past-events { padding: 80px 0; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.highlight-item { position: relative; height: 280px; border-radius: 8px; overflow: hidden; }
.highlight-item img { width: 100%; height: 100%; object-fit: cover; }
.highlight-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; }
.highlight-overlay h4 { font-size: 20px; margin-bottom: 4px; }
.highlight-overlay p { font-size: 14px; opacity: 0.9; }

@media (max-width: 768px) {
.hero h1 { font-size: 36px; }
.hero-actions { flex-direction: column; }
.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mission-grid, .intro-grid { grid-template-columns: 1fr; }
.areas-grid, .benefits-grid, .tiers-grid, .programs-grid, .highlights-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.event-card { grid-template-columns: 1fr; }
.application-steps { grid-template-columns: repeat(2, 1fr); }
}