
    :root {
        --primary: #004a59;
        --secondary: #0092ef;
        --accent: #f78da7;
        --text: #1e1f26;
        --white: #ffffff;
    }
    body { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--text); line-height: 1.6; margin: 0; }
    header { background: var(--white); padding: 20px; border-bottom: 3px solid var(--primary); }
    .inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .logo { width: 200px; height: 60px; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: bold; border: 1px solid #ccc; }
    nav ul { display: flex; list-style: none; padding: 0; gap: 20px; background: var(--primary); color: white; padding: 10px; }
    nav a { color: white; text-decoration: none; }
    .hero { background: #011835; color: white; padding: 40px; text-align: center; }
    .btn { display: inline-block; padding: 15px 30px; background: var(--secondary); color: white; text-decoration: none; border-radius: 5px; margin: 10px; }
    .contact-bar { background: #eee; padding: 20px; text-align: center; font-size: 1.2rem; font-weight: bold; }
    footer { background: var(--primary); color: white; text-align: center; padding: 20px; margin-top: 40px; }
    
    @media (max-width: 768px) {
        .inner { flex-direction: column; }
        nav ul { flex-direction: column; width: 100%; text-align: center; }
    }
