:root {
    --bg-dark: #071711;
    --bg-darker: #0f2a1f;
    --surface: #163b2d;
    --surface-soft: #1f4f3b;
    --text-primary: #f3f6ee;
    --text-secondary: #c3d5c6;
    --accent-primary: #2ec98f;
    --accent-primary-2: #75e4bb;
    --accent-secondary: #f4d179;
    --border-soft: rgba(184, 216, 197, 0.24);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--text-secondary);
    line-height: 1.65;
    background:
        radial-gradient(65rem 40rem at -10% -10%, rgba(46, 201, 143, 0.18), transparent 60%),
        radial-gradient(45rem 30rem at 110% 0%, rgba(244, 209, 121, 0.2), transparent 65%),
        var(--bg-dark);
}

a {
    color: var(--accent-secondary);
}

.container {
    width: min(1160px, 100% - 32px);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
    background: rgba(7, 23, 17, 0.88);
    backdrop-filter: blur(12px);
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.1;
}

.brand small {
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--accent-secondary);
}

.lang-switch {
    display: inline-flex;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    overflow: hidden;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.36rem 0.75rem;
}

.lang-switch a.active,
html[lang^="fr"] .lang-switch .lang-fr,
html[lang^="nl"] .lang-switch .lang-nl {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-2));
    color: #062418;
}

.section {
    padding: 28px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card,
.panel {
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(22, 59, 45, 0.95), rgba(31, 79, 59, 0.9));
    padding: 22px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

h1,
h2,
h3 {
    margin: 0 0 10px;
    color: var(--text-primary);
    line-height: 1.2;
    font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

p {
    margin: 0 0 12px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    color: var(--accent-secondary);
    font-weight: 800;
    font-size: 0.78rem;
}

.list {
    margin: 0;
    padding-left: 1.2rem;
}

.list li {
    margin-bottom: 0.55rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 11px 22px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-2));
    color: #07251b;
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #35dca1, #9befcc);
    border-color: #9befcc;
    box-shadow: 0 10px 24px rgba(46, 201, 143, 0.35);
}

.btn-secondary {
    color: var(--text-primary);
    border-color: var(--border-soft);
    background: rgba(9, 29, 21, 0.78);
}

.btn-secondary:hover {
    border-color: rgba(244, 209, 121, 0.45);
    color: var(--accent-secondary);
}

.btn-sm {
    padding: 0.46rem 0.74rem;
    font-size: 0.82rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(23, 69, 52, 0.86);
}

th,
td {
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 12px;
}

th {
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.78rem;
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

.breadcrumbs {
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 700;
}

footer {
    margin-top: 28px;
    padding: 22px 0 16px;
    border-top: 1px solid var(--border-soft);
    color: #b9cab9;
    font-size: 0.95rem;
}

footer a {
    color: var(--accent-secondary);
    text-decoration: none;
}

@media (max-width: 980px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        order: 3;
        gap: 12px;
        flex-wrap: wrap;
    }

    .card,
    .panel {
        padding: 16px;
    }

    .btn {
        width: 100%;
    }
}
