﻿:root {
    --primary: #F2A65A; /* Warm Orange */
    --primary-hover: #E09347;
    --secondary: #7AC7B4; /* Soft Green */
    --text-main: #334155;
    --text-muted: #64748B;
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(122, 199, 180, 0.3);
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-main); background: var(--bg-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }

h1, h2, h3 { color: #1E293B; line-height: 1.2; }
h2 { font-size: 2.2rem; margin-bottom: 2rem; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; border: none; text-align: center; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(242, 166, 90, 0.4); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242, 166, 90, 0.5); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Header */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.3rem; color: var(--secondary); }
.nav { display: flex; gap: 30px; }
.nav a { font-weight: 600; color: var(--text-main); transition: color 0.3s; }
.nav a:hover { color: var(--primary); }

/* Hero */
.hero { padding: 6rem 0; background: linear-gradient(135deg, rgba(122,199,180,0.05) 0%, rgba(242,166,90,0.05) 100%); }
.hero-inner { display: flex; align-items: center; gap: 4rem; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-image { flex: 1; position: relative; }
.hero-image::after { content: ''; position: absolute; bottom: -20px; left: -20px; width: 100%; height: 100%; background: var(--secondary); border-radius: var(--radius); z-index: -1; opacity: 0.15; }

/* Stats */
.stats { padding: 3rem 0; }
.stats-grid { display: flex; justify-content: space-around; background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-soft); margin-top: -5rem; position: relative; z-index: 10; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 3rem; font-weight: 800; color: var(--secondary); }
.stat-label { font-weight: 600; color: var(--text-muted); }

/* About */
.about { padding: 6rem 0; }
.about-inner { display: flex; align-items: center; gap: 4rem; }
.about-img-wrap { flex: 1; }
.about-content { flex: 1; }
.about-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.benefits li { position: relative; padding-left: 35px; margin-bottom: 15px; font-weight: 600; }
.benefits li::before { content: '✓'; position: absolute; left: 0; top: -2px; background: var(--secondary); color: white; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* Programs */
.programs { padding: 6rem 0; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; border: 1px solid var(--border-color); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card img { border-radius: 0; height: 220px; object-fit: cover; width: 100%; }
.card-body { padding: 30px; }
.card-body h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--secondary); }
.card-body p { color: var(--text-muted); }

/* Form Section */
.form-section { padding: 6rem 0; }
.form-inner { display: flex; gap: 4rem; align-items: center; }
.form-info { flex: 1; }
.form-info p { font-size: 1.1rem; color: var(--text-muted); }
.form-container { flex: 1; background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
label { display: block; margin-bottom: 8px; font-weight: 700; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] { width: 100%; padding: 14px; border: 1px solid var(--border-color); border-radius: 10px; font-family: inherit; font-size: 1rem; background: var(--bg-light); transition: border 0.3s; }
input:focus { outline: none; border-color: var(--secondary); background: #fff; }
.form-check { display: flex; gap: 12px; margin-bottom: 25px; align-items: flex-start; }
.form-check input { margin-top: 5px; cursor: pointer; }
.form-check label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); cursor: pointer; }
.form-check a { color: var(--primary); text-decoration: underline; }
.success-message { text-align: center; padding: 30px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px; }
.success-message h3 { color: #166534; margin: 15px 0 10px; }
.success-message p { color: #15803D; }
.hidden { display: none !important; }

/* FAQ */
.faq { padding: 6rem 0; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 15px; background: #fff; overflow: hidden; }
.accordion-btn { width: 100%; text-align: left; padding: 20px 25px; background: none; border: none; font-size: 1.1rem; font-weight: 700; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.accordion-btn::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.accordion-btn.active::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 25px; background: #fff; }
.accordion-panel p { padding-bottom: 20px; color: var(--text-muted); }

/* Footer */
.footer { background: #1E293B; color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 3rem; }
.footer-brand .logo { color: #fff; margin-bottom: 15px; }
.footer-brand p { color: #94A3B8; font-size: 0.95rem; max-width: 300px; }
.footer h4 { margin-bottom: 20px; color: #fff; font-size: 1.2rem; }
.footer p, .footer ul li a { color: #94A3B8; margin-bottom: 10px; display: block; font-size: 0.95rem; transition: color 0.3s; }
.footer ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #334155; padding-top: 2rem; color: #64748B; font-size: 0.9rem; }

/* Legal Content */
.legal-main { padding: 4rem 0; }
.legal-box { background: #fff; padding: 3rem 4rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); max-width: 900px; margin: 0 auto; }
.legal-box h1 { color: var(--secondary); margin-bottom: 2rem; }
.legal-box h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: var(--text-main); }
.legal-box p, .legal-box ul { color: var(--text-muted); margin-bottom: 1rem; }
.legal-box ul { padding-left: 20px; list-style: disc; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 9999; background: #fff; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow-hover); border: 1px solid var(--border-color); width: 90%; max-width: 800px; }
.cookie-content { display: flex; align-items: center; gap: 20px; }
.cookie-content p { font-size: 0.9rem; margin: 0; color: var(--text-muted); }
.cookie-content a { color: var(--primary); text-decoration: underline; }

/* Responsive */
@media(max-width: 992px) {
    .hero-inner, .about-inner, .form-inner { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .stats-grid { flex-direction: column; gap: 30px; margin-top: 2rem; }
    .programs-grid { grid-template-columns: 1fr; }
    .benefits li { text-align: left; }
    .form-row { flex-direction: column; gap: 0; }
}
@media(max-width: 768px) {
    .nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .cookie-content { flex-direction: column; text-align: center; }
    .legal-box { padding: 2rem; }
}
