:root {
    --navy: #0B1F3B;
    --green: #00A676;
    --white: #F7F8FA;
    --slate: #5B6675;
    --orange: #FF6B35;
    --dark: #0A1526;
}

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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid #e2e6eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    height: auto;
}

.logo-header {
    max-height: 50px;
}

.logo-footer {
    max-height: 100px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-weight: 600;
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: var(--navy);
    font-weight: 600;
}

.nav-menu a.active {
    color: var(--green);
}

.nav-close {
    display: none;
}

.nav-cta {
    margin-left: 16px;
}

.hero {
    background: linear-gradient(120deg, rgba(11, 31, 59, 0.95), rgba(0, 166, 118, 0.85));
    color: var(--white);
    padding: 60px 0;
}

.hero-small {
    padding: 40px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
}

.hero-content p {
    margin-bottom: 16px;
    color: #e9edf2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section {
    padding: 60px 0;
}

.section-alt {
    background: #eef2f6;
}

.section h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    margin-bottom: 16px;
    color: var(--navy);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(11, 31, 59, 0.08);
}

.card h3 {
    margin-bottom: 12px;
    color: var(--navy);
}

.image-row {
    margin-top: 24px;
}

.img-rounded {
    border-radius: 14px;
}

.list-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
    padding-left: 18px;
}

.faq details {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 8px 18px rgba(11, 31, 59, 0.08);
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
}

.contact-section .form {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(11, 31, 59, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    border: 1px solid #ccd4de;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-accent {
    background: var(--orange);
    color: var(--white);
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer-nav ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-nav a {
    color: var(--white);
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 999;
}

.cookie-banner a {
    color: var(--orange);
}

.legal-page .section {
    padding: 40px 0;
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        display: none;
        padding: 40px;
        text-align: center;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu a {
        color: var(--white);
        font-size: 1.2rem;
    }

    .nav-toggle-label {
        display: inline-block;
    }

    .nav-close {
        display: inline-block;
        color: var(--white);
        font-size: 1.5rem;
        position: absolute;
        top: 20px;
        right: 24px;
        cursor: pointer;
    }

    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
    }

    .sticky-cta {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0;
    }

    .sticky-cta {
        bottom: 10px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}