/* RESET */


/* DEFINITIEVE HERO FIX */

.contact-section {
    padding-top: 120px;
}

.hero {
    min-height: 65vh;
    max-height: 700px;
    padding: 0;
}

@media (max-width: 768px) {
    .hero {
        min-height: 55vh;
        padding: 40px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #111;
    background: #fff;
}


/* LAYOUT */

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    background: #08142c;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand h1 {
    color: #fff;
    font-size: 18px;
}

.brand span {
    font-size: 11px;
    color: #aaa;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.call {
    background: #ffb000;
    padding: 10px 16px;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
}


/* HERO */

.hero {
    min-height: 75vh;
    max-height: 800px;
    background: url('dak') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    background-position: left center;
}

.hero {
    background-size: cover;
    background-position: center 65%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 600px;
}

.badge {
    background: red;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}

.hero h2 {
    font-size: 38px;
    margin: 15px 0;
}

.hero ul {
    list-style: none;
    margin: 20px 0;
}

.hero li {
    margin-bottom: 8px;
}


/* BUTTONS */

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: #ffb000;
    color: #000;
}

.ghost {
    border: 2px solid #fff;
    color: #fff;
}


/* USP */

.usp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: -70px;
    position: relative;
    z-index: 2;
}

.box {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    transition: .3s;
}

.box:hover {
    transform: translateY(-6px);
}

.red {
    border-left: 6px solid red
}

.orange {
    border-left: 6px solid orange
}


/* SERVICES */

.services {
    background: linear-gradient(180deg, #08142c, #050b1a);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.services h2 {
    font-size: 32px;
}

.center {
    display: inline-block;
    margin: 20px auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service {
    background: #fff;
    color: #000;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service h4 {
    margin: 15px;
}

.service p {
    margin: 0 15px 20px;
}


/* CONTACT */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 100px auto;
}

.form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.form input,
.form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
}


/* FOOTER */

.footer {
    background: #08142c;
    color: #fff;
    text-align: center;
    padding: 25px;
}


/* MOBILE */

@media(max-width:768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #08142c;
        flex-direction: column;
    }
    nav a {
        padding: 15px;
        border-top: 1px solid #222;
    }
    .burger {
        display: block
    }
    .hero h2 {
        font-size: 26px
    }
    .actions a {
        width: 100%;
        text-align: center;
    }
    .usp,
    .grid,
    .contact {
        grid-template-columns: 1fr;
    }
    .services h2 {
        font-size: 24px
    }
    .form {
        padding: 25px
    }
}


/* CONTACT SECTION */

.contact-section {
    background: #f4f6f8;
    padding: 100px 20px;
}

.contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-left h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-sub {
    color: #555;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-highlight {
    background: #08142c;
    color: #fff;
    padding: 25px;
    border-radius: 16px;
    max-width: 380px;
}


/* FORM */

.contact-right {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.contact-right h3 {
    margin-bottom: 25px;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.contact-right button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #ffb000;
    font-weight: bold;
    cursor: pointer;
}


/* MOBILE */

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-left h2 {
        font-size: 26px;
    }
    .contact-section {
        padding: 70px 20px;
    }
}


/* PAGE HERO */

.page-hero {
    background: linear-gradient(180deg, #08142c, #050b1a);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero p {
    color: #ccc;
    margin-bottom: 25px;
}


/* PAGE SECTIONS */

.page-section {
    padding: 80px 20px;
}

.page-section.alt {
    background: #f4f6f8;
}

.text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-image.reverse {
    direction: rtl;
}

.text-image.reverse>* {
    direction: ltr;
}

.text-image img {
    width: 100%;
    border-radius: 20px;
}

.checklist {
    list-style: none;
    margin-top: 20px;
}

.checklist li {
    margin-bottom: 10px;
}


/* INFO BOX */

.info-box {
    background: #fff3d6;
    padding: 25px;
    border-radius: 16px;
    margin-top: 25px;
}

.info-box.light {
    background: #f9f9f9;
}


/* CTA */

.cta-section {
    background: #08142c;
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}


/* MOBILE */

@media(max-width:768px) {
    .page-hero h1 {
        font-size: 28px
    }
    .text-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* TYPOGRAFIE */

h1,
h2,
h3 {
    letter-spacing: -0.5px;
}

p {
    line-height: 1.7;
    color: #333;
}


/* CONTENT BLOKKEN */

.content-block {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}


/* ICON LIST */

.icon-list {
    list-style: none;
    margin-top: 20px;
}

.icon-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.icon-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffb000;
    font-weight: bold;
}


/* AFBEELDINGEN */

.text-image img {
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
}


/* INFO BOX (Resitrix / isolatie) */

.info-box {
    border-left: 5px solid #ffb000;
    background: #fff8e6;
    padding: 25px 30px;
    border-radius: 14px;
}


/* SECTION SPACING */

.page-section {
    padding: 100px 20px;
}

.page-section.alt {
    background: #f3f5f7;
}

.page-hero {
    background: linear-gradient(180deg, rgba(8, 20, 44, .95), rgba(5, 11, 26, .95)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
}


/* PREMIUM VARIABLES */

:root {
    --dark: #08142c;
    --accent: #ffb000;
    --soft: #f5f7fa;
}


/* PAGE HERO */

.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(8, 20, 44, .92), rgba(5, 10, 25, .92)), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    letter-spacing: -1px;
}

.page-hero p {
    max-width: 640px;
    margin: 15px auto 30px;
    font-size: 18px;
    color: #dbe2ff;
}


/* SECTIONS */

.section {
    padding: 100px 20px;
}

.section.alt {
    background: var(--soft);
}


/* GRID */

.split {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}


/* CONTENT CARD */

.card {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.card h2 {
    font-size: 32px;
    margin-bottom: 15px;
}


/* LIST */

.checklist {
    list-style: none;
    margin-top: 25px;
}

.checklist li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 500;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent);
}


/* IMAGE */

.image-wrap img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .25);
}


/* INFO BOX */

.info {
    background: #fff7e1;
    border-left: 6px solid var(--accent);
    padding: 30px;
    border-radius: 18px;
    margin-top: 25px;
}


/* CTA */

.cta {
    background: linear-gradient(135deg, #0b1c3a, #08142c);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.cta h2 {
    font-size: 36px;
}

.cta .btn {
    margin-top: 30px;
    padding: 16px 26px;
    font-weight: bold;
}


/* MOBILE */

@media(max-width:900px) {
    .split {
        grid-template-columns: 1fr
    }
    .page-hero h1 {
        font-size: 32px
    }
}

.hero p {
    color: #fff;
}

.usp {
    margin-top: 60px;
    /* ruimte onder hero */
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.usp-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f7f9fc;
    /* lichtgrijs zoals Figma */
}

.intro-text {
    padding: 80px 0;
    text-align: center;
}

.intro-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.intro-text p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}

.cta-sub {
    color: #fff;
}

.footer {
    background: linear-gradient(135deg, #0b1c3a, #08142c);
    color: #fff;
    text-align: center;
    padding: 20px 15px;
    font-size: 14px;
}

.contact-highlight p {
    color: #ffffff;
}

@media (max-width: 768px) {
    /* Algemene layout */
    body {
        font-size: 15px;
    }
    .container {
        padding: 20px;
    }
    /* HEADER / NAV */
    nav {
        flex-direction: column;
        gap: 15px;
    }
    .call {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    /* HERO */
    .hero,
    .page-hero {
        min-height: auto;
        padding: 60px 0;
        text-align: center;
    }
    .hero h1,
    .page-hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    .hero p,
    .page-hero p {
        font-size: 15px;
    }
    .hero .btn,
    .page-hero .btn {
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
    }
    /* USP BLOKKEN */
    .usp {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 20px;
    }
    .box {
        padding: 20px;
    }
    /* CONTENT SECTIES (tekst + image) */
    .text-image {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .text-image.reverse {
        direction: ltr;
    }
    .text-image img {
        width: 100%;
        border-radius: 14px;
    }
    /* INFO BLOKKEN (oranje) */
    .info-box {
        padding: 20px;
    }
    /* CONTACT SECTIE */
    .contact {
        padding: 40px 0;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-left {
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .contact-highlight {
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
    }
    /* FORMULIER */
    .contact-right {
        padding: 25px;
    }
    .contact-right input,
    .contact-right textarea,
    .contact-right button {
        width: 100%;
    }
    /* CTA */
    .cta {
        padding: 50px 20px;
        text-align: center;
    }
    .cta h2 {
        font-size: 24px;
    }
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    /* FOOTER */
    .footer {
        font-size: 13px;
        padding: 20px;
        text-align: center;
    }
}


/* COOKIE BANNER – DEFINITIEF */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #08142c;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 99999;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
}

.cookie-actions button {
    background: #ffb000;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

@media(max-width:768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {
    #menu {
        display: none;
        flex-direction: column;
        background: #08142c;
    }
    #menu.open {
        display: flex;
    }
}

.cookie-banner {
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .4);
}

#cookie-banner,
#cookie-banner p {
    color: #ffffff !important;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link:hover .service {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.footer {
    background: #08142c;
    color: #ffffff;
    padding: 80px 40px 30px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.8;
}

.footer p {
    color: #ffffff;
    opacity: 1;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 420px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f7a600;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #f7a600;
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-form button:hover {
    background: #e69500;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.contact-form {
    width: 100%;
}

.page-hero {
    min-height: 60vh;
    /* ⬅️ HIER bepaal je hoogte */
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 40px 20px;
    }
}

.brand {
    text-decoration: none;
    color: #fff;
    display: block;
}

.brand:hover {
    opacity: 0.9;
}

.hero {
    min-height: 60vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url("dak") center / cover no-repeat;
    color: #fff;
}

.hero-content {
    max-width: 620px;
}

.hero h2 {
    font-size: 40px;
    margin: 16px 0;
}

.hero ul {
    list-style: none;
    margin: 20px 0;
}

.hero li {
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    background: red;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.services h2 {
    margin-bottom: 35px;
}


/* Mobile menu */

@media (max-width: 768px) {
    #menu {
        display: none;
        flex-direction: column;
        background: #08142c;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 999;
    }
    #menu.open {
        display: flex;
    }
    #menu a {
        padding: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .burger {
        display: block;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 22px;
    }
    p {
        font-size: 15px;
        line-height: 1.7;
    }
    .legal-block,
    .box,
    .card {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    input,
    textarea,
    button {
        font-size: 16px;
        /* voorkomt iOS zoom */
    }
}


/* =========================
   CONTACT PAGINA – FIX
   ========================= */

.contact-section {
    padding: 100px 20px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}


/* LINKER TEKST */

.contact-left h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-left p {
    color: #555;
    margin-bottom: 20px;
}


/* INFO LIJST */

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 15px;
}


/* INFO BOX */

.contact-highlight {
    background: #fff3d6;
    border-left: 6px solid #ffb000;
    padding: 22px;
    border-radius: 14px;
    max-width: 520px;
}


/* FORMULIER */

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    width: 100%;
}

.contact-form label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    /* iOS FIX */
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #ffb000;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}


/* =========================
   MOBIEL – VERPLICHT
   ========================= */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-left {
        text-align: center;
    }
    .contact-list li {
        justify-content: center;
    }
    .contact-highlight {
        margin: 0 auto;
    }
    .contact-form {
        padding: 25px;
    }
    .contact-left h2 {
        font-size: 26px;
    }
}


/* =========================
   CONTACT PAGINA – DEFINITIEF
   ========================= */

.contact-section {
    background: #f4f6f8;
    padding: 120px 20px;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}


/* KAARTEN */

.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}


/* LINKER KAART */

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 15px;
}


/* DRINGEND BLOK */

.contact-highlight {
    background: #fff3d6;
    border-left: 6px solid #ffb000;
    padding: 22px;
    border-radius: 14px;
}


/* FORMULIER */

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    /* iOS zoom fix */
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #ffb000;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e6a200;
}


/* =========================
   MOBIEL
   ========================= */

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 15px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .contact-card {
        padding: 28px;
    }
    .contact-card h2 {
        font-size: 24px;
        text-align: center;
    }
    .contact-card p {
        text-align: center;
    }
    .contact-highlight {
        margin: 0 auto;
    }
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}


/* LINKERKANT */

.contact-left {
    font-size: 16px;
}


/* RECHTERKANT FORM */

.contact-right {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-right h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.hero {
    padding-top: 120px;
}


/* INPUTS */

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
}

.contact-right textarea {
    min-height: 100px;
    resize: vertical;
}


/* BUTTON */

.contact-right button {
    width: 100%;
    padding: 14px;
    background: #ffb000;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-right button:hover {
    background: #e09b00;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}


/* =========================
   HERO – HOME (DEFINITIEF)
   ========================= */

.hero {
    min-height: 60vh;
    max-height: 700px;
    padding-top: 120px;
    /* offset voor sticky header */
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient( rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url("dak") center / cover no-repeat;
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding-top: 100px;
    }
}


/* =========================
   LEGAL / PRIVACY PAGINA
   ========================= */

.legal-page {
    background: #f4f6f8;
    padding: 120px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #08142c;
}


/* KAARTEN */

.legal-block {
    background: linear-gradient(135deg, #0b1c3a, #08142c);
    color: #ffffff;
    padding: 40px;
    border-radius: 22px;
    margin-bottom: 35px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.legal-block h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #e6ecff;
}

.legal-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.legal-block li {
    font-size: 16px;
    line-height: 1.7;
    color: #e6ecff;
    margin-bottom: 8px;
}


/* =========================
   MOBIEL
   ========================= */

@media (max-width: 768px) {
    .legal-page {
        padding: 70px 15px;
    }
    .legal-container h1 {
        font-size: 26px;
        margin-bottom: 40px;
    }
    .legal-block {
        padding: 22px;
        border-radius: 16px;
    }
    .legal-block h2 {
        font-size: 18px;
    }
    .legal-block p,
    .legal-block li {
        font-size: 15px;
    }
}


/* =========================
   PRIVACY / LEGAL PAGINA
   ========================= */

.legal-page {
    background: #f4f6f8;
    padding: 120px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #08142c;
}


/* BLOKKEN */

.legal-block {
    background: linear-gradient(135deg, #0b1c3a, #08142c);
    color: #ffffff;
    padding: 35px 40px;
    border-radius: 22px;
    margin-bottom: 35px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
}

.legal-block h2 {
    font-size: 22px;
    margin-bottom: 14px;
}

.legal-block p,
.legal-block li {
    font-size: 15px;
    line-height: 1.7;
    color: #e6ecff;
}

.legal-block ul {
    padding-left: 18px;
}


/* =========================
   MOBIEL
   ========================= */

@media (max-width: 768px) {
    .legal-page {
        padding: 80px 15px;
    }
    .legal-container h1 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .legal-block {
        padding: 25px;
        border-radius: 16px;
    }
    .legal-block h2 {
        font-size: 18px;
    }
    .legal-block p,
    .legal-block li {
        font-size: 14px;
    }
}