﻿:root {
    --primary: #4A90E2;
    --primary-hover: #357ABD;
    --secondary: #F5A623;
    --secondary-hover: #D08C1D;
    --bg-main: #F9FBFD;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    --transition: all 0.3s ease;
}

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

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

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.bg-light { background-color: #F0F5FA; padding: 5rem 0; }

h1, h2, h3, h4 { color: var(--text-main); margin-bottom: 1rem; font-weight: 800; }
h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }

.btn {
    display: inline-block; padding: 0.8rem 1.8rem; border-radius: 50px;
    font-weight: 700; cursor: pointer; border: none; text-align: center;
    transition: var(--transition);
}
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3); }
.btn-primary:hover { background: var(--secondary-hover); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-block { display: block; width: 100%; padding: 1rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }

/* Glassmorphism */
.glass {
    background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); border-radius: 20px; box-shadow: var(--shadow);
}

/* Header */
.header { position: fixed; top: 0; width: 100%; background: rgba(249, 251, 253, 0.9); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--primary); }
.logo img { height: 40px; }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a:not(.btn) { color: var(--text-main); font-weight: 600; }
.nav a:not(.btn):hover { color: var(--primary); }

/* Hero */
.hero { padding: 8rem 0 4rem; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }

/* Stats */
.stats { padding: 3rem 0; background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-card h3 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }

/* About */
.about { padding: 5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { width: 100%; border-radius: 20px; }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; font-weight: 600; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--secondary); font-weight: 800; font-size: 1.2rem; }

/* Programs */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card { padding: 2.5rem; text-align: center; transition: var(--transition); }
.card:hover { transform: translateY(-5px); }

/* Form Section */
.form-section { padding: 5rem 0; background: linear-gradient(135deg, #e0ebf5 0%, #f9fbfd 100%); }
.form-wrapper { max-width: 600px; margin: 0 auto; padding: 3rem; }
.form-text { text-align: center; margin-bottom: 2rem; }
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.input-group input { width: 100%; padding: 0.8rem 1rem; border: 1px solid #ccc; border-radius: 8px; font-family: inherit; font-size: 1rem; outline: none; transition: border 0.3s; }
.input-group input:focus { border-color: var(--primary); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 4px; }
.hidden { display: none !important; }
.success-msg { color: #2e7d32; background: #e8f5e9; padding: 1rem; border-radius: 8px; text-align: center; margin-top: 1rem; border: 1px solid #c8e6c9; }
.error-msg { color: #c62828; background: #ffebee; padding: 1rem; border-radius: 8px; text-align: center; margin-top: 1rem; }

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

/* Footer */
.footer { background: #2C3E50; color: var(--white); padding: 4rem 0 2rem; }
.footer h4 { color: var(--white); margin-bottom: 1.5rem; }
.footer p, .footer a { color: #AAB7C4; }
.footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #2C3E50; color: white; padding: 1rem 2rem; border-radius: 50px; display: flex; gap: 20px; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 9999; width: 90%; max-width: 800px; }
.cookie-banner p { margin: 0; color: #ddd; font-size: 0.9rem; }
.cookie-banner a { color: var(--secondary); text-decoration: underline; }

/* Premium Legal Pages styling */
.legal-page { padding: 8rem 0 4rem; }
.legal-content { padding: 3rem; background: var(--white); }
.legal-content h2 { margin-top: 2rem; font-size: 1.5rem; }
.legal-content p, .legal-content li { margin-bottom: 1rem; color: var(--text-muted); }
.legal-content ul { margin-left: 2rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .about-inner, .footer-grid { grid-template-columns: 1fr; }
    .nav { display: none; /* simple mobile hide for brevity */ }
    h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-wrapper, .legal-content { padding: 1.5rem; }
    .cookie-banner { flex-direction: column; text-align: center; border-radius: 20px; }
}
