:root { --primary: #f39c12; --secondary: #2c3e50; --bg: #f4f4f4; --white: #ffffff; }
    body { font-family: 'Helvetica Neue', Arial, sans-serif; margin: 0; background: var(--bg); color: #333; }
    .container { width: 90%; max-width: 1100px; margin: auto; }
    .header-flex { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
    header { background: var(--secondary); color: white; border-bottom: 5px solid var(--primary); }
    .main-menu { list-style: none; display: flex; gap: 20px; padding: 0; }
    .main-menu a { color: white; text-decoration: none; font-weight: 500; transition: 0.3s; }
    .main-menu a:hover { color: var(--primary); }
    .hero { background: var(--white); padding: 60px 0; text-align: center; border-bottom: 1px solid #ddd; }
    .content-section { padding: 40px 0; background: var(--white); min-height: 400px; }
    footer { background: #1a1a1a; color: #ccc; padding: 40px 0 20px; margin-top: 40px; }
    .footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; }
    .footer-links { list-style: none; padding: 0; display: flex; gap: 20px; }
    .footer-links a { color: #ccc; text-decoration: none; }
    .copyright { border-top: 1px solid #333; margin-top: 20px; padding-top: 20px; text-align: center; font-size: 0.8rem; }
    #cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--secondary); color: white; padding: 20px; border-radius: 8px; display: none; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    .btn-cookie { background: var(--primary); border: none; padding: 8px 20px; color: white; cursor: pointer; border-radius: 4px; margin-left: 10px; }
    @media (max-width: 768px) { .header-flex { flex-direction: column; } .main-menu { justify-content: center; font-size: 0.8rem; } }