﻿:root {
    --primary: #FF9F43; /* Warm orange */
    --primary-hover: #FF8A1C;
    --secondary: #87CEFA; /* Soft blue */
    --text-dark: #2D3436;
    --text-light: #636E72;
    --bg-main: #FAFBFC;
    --bg-white: #FFFFFF;
    --border: #DFE6E9;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(255, 159, 67, 0.15);
    --radius: 16px;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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 20px; }
.bg-light { background-color: var(--bg-white); }
.bg-warm { background-color: #FFF6EC; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}
.btn-primary { background-color: var(--primary); color: white; box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }
.btn-small { padding: 8px 20px; font-size: 0.9rem; }

.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; color: var(--text-dark); }

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

/* Hero */
.hero { padding: 6rem 0; }
.hero-inner { display: flex; align-items: center; gap: 4rem; }
.hero-content { flex: 1; }
.hero-content h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; }
.hero-image { flex: 1; position: relative; }
.hero-image::before { content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; background: var(--secondary); border-radius: var(--radius); z-index: -1; opacity: 0.2; }

/* Stats */
.stats { padding: 2rem 0; margin-top: -2rem; }
.stats-inner { display: flex; justify-content: space-between; gap: 20px; background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.stat-card { text-align: center; flex: 1; }
.stat-card h3 { font-size: 2.5rem; color: var(--primary); }
.stat-card p { color: var(--text-light); font-weight: 500; }

/* About */
.about { padding: 5rem 0; }
.about-inner { display: flex; align-items: center; gap: 4rem; }
.about-image { flex: 1; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-light); margin-bottom: 1.5rem; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--text-dark); font-weight: 500; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

/* Programs */
.programs { padding: 5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-img { height: 200px; background-size: cover; background-position: center; }
.card-content { padding: 25px; }
.card-content h3 { margin-bottom: 10px; font-size: 1.3rem; }
.card-content p { color: var(--text-light); font-size: 0.95rem; }

/* Form Section */
.form-section { padding: 5rem 0; }
.form-inner { display: flex; gap: 4rem; align-items: center; }
.form-text { flex: 1; }
.form-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.form-text p { color: var(--text-light); }
.form-box { flex: 1; background: white; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.input-group { margin-bottom: 20px; }
.input-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.input-group input { width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; transition: border-color 0.3s; }
.input-group input:focus { outline: none; border-color: var(--primary); }
.checkbox-group { display: flex; gap: 10px; margin-bottom: 25px; font-size: 0.85rem; color: var(--text-light); }
.checkbox-group input { margin-top: 3px; }
.checkbox-group a { color: var(--primary); text-decoration: underline; }
.success-message { text-align: center; padding: 20px; background: #e8f5e9; color: #2e7d32; border-radius: 8px; }
.hidden { display: none !important; }

/* FAQ */
.faq { padding: 5rem 0; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: white; margin-bottom: 15px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); overflow: hidden; }
.accordion-header { width: 100%; text-align: left; padding: 20px; background: none; border: none; font-weight: 600; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; font-family: inherit; color: var(--text-dark); }
.accordion-header::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
.accordion-header.active::after { content: '-'; }
.accordion-content { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: white; }
.accordion-content p { padding-bottom: 20px; color: var(--text-light); }

/* Footer */
.footer { background: white; padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 3rem; }
.footer-col h4 { margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col p, .footer-col ul li a { color: var(--text-light); margin-bottom: 10px; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--text-light); font-size: 0.9rem; }

/* Legal Pages Content */
.legal-content { max-width: 800px; margin: 4rem auto; background: white; padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.legal-content h1 { margin-bottom: 2rem; color: var(--primary); }
.legal-content h2 { margin: 1.5rem 0 1rem; font-size: 1.3rem; }
.legal-content p, .legal-content ul { margin-bottom: 1rem; color: var(--text-light); }
.legal-content ul { padding-left: 20px; list-style: disc; }

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

/* Responsive */
@media (max-width: 992px) {
    .hero-inner, .about-inner, .form-inner { flex-direction: column; text-align: center; gap: 2rem; }
    .nav { display: none; } /* Simple mobile adaptation */
    .grid-3 { grid-template-columns: md; }
    .stats-inner { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; border-radius: var(--radius); text-align: center; }
}
