:root {
    --night-blue: #0A2540;
    --petrol: #0C6D7A;
    --emerald: #1EC7A1;
    --fog: #F2F5F7;
    --slate: #2E3A46;
    --white: #FFFFFF;
    --font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--fog);
    color: var(--night-blue);
    line-height: 1.6;
}

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

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

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

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--night-blue);
}

.logo-image {
    width: 50px;
    height: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-toggle-label span {
    width: 24px;
    height: 2px;
    background-color: var(--night-blue);
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--slate);
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--petrol);
}

.mobile-nav-overlay {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--night-blue);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--petrol);
    color: var(--petrol);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--petrol);
    color: var(--white);
}

.hero {
    padding: 5rem 0 3rem;
    background-color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-heading {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--night-blue);
}

.hero-subline {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: var(--slate);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-caption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(10, 37, 64, 0.7);
}

.section {
    padding: 4.5rem 0;
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.25rem;
    color: var(--night-blue);
}

.section-intro {
    max-width: 720px;
    margin-bottom: 2.5rem;
    color: var(--slate);
    font-size: 1rem;
}

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

.stat-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 12px 28px rgba(14, 43, 66, 0.08);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--petrol);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--slate);
    font-size: 0.95rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.card {
    background-color: var(--white);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(14, 43, 66, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--night-blue);
}

.card ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--slate);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.timeline-step {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    border-top: 4px solid var(--emerald);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-step span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--petrol);
    letter-spacing: 0.08em;
}

.image-section {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.image-section .text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background-color: rgba(12, 109, 122, 0.12);
    color: var(--petrol);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.list-columns ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--slate);
}

.list-columns li::before {
    content: "•";
    color: var(--emerald);
    font-weight: 700;
    margin-right: 0.5rem;
}

.faq {
    display: grid;
    gap: 1rem;
}

.faq details {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(14, 43, 66, 0.08);
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    color: var(--night-blue);
    list-style: none;
    position: relative;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--petrol);
}

details[open] summary::after {
    content: "−";
}

.faq details p {
    margin-top: 0.85rem;
    color: var(--slate);
}

.contact-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--slate);
}

.contact-info h3 {
    color: var(--night-blue);
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--petrol);
    font-weight: 600;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.form-group label {
    font-weight: 600;
    color: var(--night-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(14, 43, 66, 0.18);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background-color: var(--fog);
    color: var(--night-blue);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--slate);
}

.checkbox-group input {
    margin-top: 0.2rem;
    transform: scale(1.1);
}

.site-footer {
    background-color: var(--night-blue);
    color: var(--white);
    padding: 4rem 0 3rem;
    margin-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}

.footer-brand .logo-image {
    width: 100px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-contact a {
    color: var(--emerald);
    font-weight: 600;
}

.footer-nav,
.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.legal-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-nav a:hover,
.legal-nav a:hover {
    color: var(--emerald);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 360px;
    background-color: var(--white);
    color: var(--night-blue);
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(14, 43, 66, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--slate);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.meta-info {
    font-size: 0.85rem;
    color: rgba(10, 37, 64, 0.6);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background-color: var(--white);
    border: 1px solid rgba(14, 43, 66, 0.08);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.table th,
.table td {
    padding: 1rem 1.2rem;
    text-align: left;
}

.table th {
    background-color: rgba(12, 109, 122, 0.08);
    font-weight: 600;
    color: var(--night-blue);
}

.table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(14, 43, 66, 0.08);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(30, 199, 161, 0.15);
    color: var(--petrol);
    font-size: 0.8rem;
    font-weight: 600;
}

blockquote {
    background-color: var(--white);
    border-left: 4px solid var(--emerald);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    color: var(--slate);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-grid,
    .image-section,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 4rem;
    }

    .main-nav {
        display: none;
    }

    .nav-toggle-label {
        display: flex;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(10, 37, 64, 0.97);
        color: var(--white);
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-toggle:checked ~ .mobile-nav-overlay {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .overlay-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .close-overlay {
        font-size: 2rem;
        cursor: pointer;
    }

    .mobile-nav-overlay ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

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

    .contact-card {
        gap: 2rem;
    }

    .cookie-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0 2.5rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .stats-grid {
        gap: 1.25rem;
    }

    .card {
        padding: 1.5rem;
    }

    .cookie-banner {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-bottom {
        text-align: left;
    }
}