:root {
    --primary: #2C3E50;
    --accent: #E67E22;
    --text: #333;
    --light: #F4F7F6;
    --white: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.6; background: var(--light); }
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Header */
.main-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; text-decoration: none; font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.logo img { margin-right: 10px; }
.desktop-nav a { text-decoration: none; color: var(--primary); margin-left: 30px; font-weight: 500; transition: 0.3s; }
.desktop-nav a:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 25px; height: 3px; background: var(--primary); margin: 5px 0; }

/* Hero */
.hero { height: 80vh; display: flex; align-items: center; color: var(--white); background-size: cover; background-position: center; text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }

/* Buttons */
.btn { display: inline-block; padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-outline { border: 2px solid var(--white); color: var(--white); margin-left: 15px; }
.btn-submit { background: var(--primary); color: var(--white); width: 100%; font-size: 1.1rem; }

/* Sections */
.stats { display: flex; justify-content: space-around; padding: 60px 0; background: var(--white); margin-top: -50px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 2rem; color: var(--accent); }
.how-it-works { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
.step { text-align: center; padding: 20px; }
.step i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }

/* Form */
.cta-form-section { padding: 80px 0; }
.form-wrapper { background: var(--white); padding: 50px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
.form-check { margin-bottom: 20px; font-size: 0.9rem; }

/* Trust Layer */
.trust-layer { background: #eef2f3; padding: 40px 0; font-size: 0.85rem; border-top: 1px solid #ddd; }
.trust-content { text-align: center; }
.disclaimer { font-style: italic; margin-top: 10px; color: #666; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.2); display: none; z-index: 2000; justify-content: space-between; align-items: center; }
.btn-s { padding: 8px 20px; font-size: 0.8rem; }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
.mobile-menu nav a { display: block; padding: 15px 0; border-bottom: 1px solid #eee; text-decoration: none; color: var(--primary); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .desktop-nav { display: none; }
    .burger { display: block; }
    .stats { flex-direction: column; gap: 30px; margin-top: 0; }
    .mobile-menu.active { display: block; }
}