body{
    margin:0;
    background:#F5F1ED;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

ul {
    display: flex;
    align-items: center;
    gap: 5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.3s;
}

a:hover {
    font-size: 2.8vh;
    font-weight: 600;
}

.navigatie a:hover {
    font-size: 1.2rem;
    transform: translateY(-2px);
}

header {
    height: 5.5rem;
    background-color: #EDE7DF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    padding: 0 1rem;
    border-bottom: 1px solid #E5E1DC;
    top: 0;
    z-index: 20;
    box-shadow: 0 10px 22px rgba(134, 115, 94, 0.08);
}

.logo-link {
    position: absolute;
    left: 0;
    display: inline-flex;
    align-items: center;
}

.logo {
    width: 9rem;
    height: 5.5rem;
    display: block;
}

.navigatie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 25.5rem 0 9rem;
}

.navigatie ul {
    gap: clamp(1.25rem, 3vw, 5rem);
}

.menu-knop {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background-color: #d4a373;
    box-shadow: 0 8px 18px rgba(134, 115, 94, 0.16);
    cursor: pointer;
}

.menu-knop span {
    display: block;
    width: 1.35rem;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-knop.open span:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
}

.menu-knop.open span:nth-child(2) {
    opacity: 0;
}

.menu-knop.open span:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
}

.line1 {
    display: block;
    background-color: black;
    width: 0.5px;
    height: 2.5rem;
}

.button1 {
    background-color: #D4A373;
    color: #fff;
    width: 17%;
    min-width: 13rem;
    height: 4.5vh;
    border: 1px solid #4B9758;
    border-radius: 10px;
    position: absolute;
    right: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.button1:hover {
    background-color: #fff;
    color: #D4A373;
    transform: translateY(-2px);
}

.header-actions {
    position: absolute;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .button1,
.header-actions .button-offerte {
    box-sizing: border-box;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 2.9rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

.header-actions .button1 {
    position: relative;
    inset: auto;
    border: 1px solid rgba(212, 163, 115, 0.45);
    background: linear-gradient(135deg, #D4A373 0%, #b9824e 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(143, 98, 54, 0.2);
}

.header-actions .button1::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -55%;
    width: 42%;
    height: 180%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(18deg);
    transition: left 0.45s ease;
}

.header-actions .button1:hover {
    background: linear-gradient(135deg, #e0b07d 0%, #c18d58 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(143, 98, 54, 0.28);
    font-size: 0.95rem;
}

.header-actions .button1:hover::before {
    left: 125%;
}

.header-actions .button-offerte {
    border: 1px solid rgba(23, 63, 29, 0.22);
    background: linear-gradient(135deg, #173f1d 0%, #4B9758 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 63, 29, 0.2);
}

.header-actions .button-offerte:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #214f27 0%, #5aa767 100%);
    color: #fff;
    font-size: 0.95rem;
}

.hero{
    min-height:45vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    background:linear-gradient(135deg,#d4a373,#84BF83);
    color:white;
}

.hero-content{
    max-width:800px;
    animation:fadeUp 1s ease;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
}

.informatie{
    display:flex;
    justify-content:center;
    padding:50px 20px;
}

.info-box{
    background:white;
    max-width:900px;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    animation:fadeUp 1s ease;
}

.info-box h2{
    text-align:center;
    margin-bottom:20px;
}

.formulier-section{
    display:flex;
    justify-content:center;
    padding:20px 20px 80px;
}

.offerte-formulier{
    width:100%;
    max-width:900px;
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    animation:fadeUp 1s ease;
}

.form-group{
    display:flex;
    flex-direction:column;
}

label{
    margin-bottom:8px;
    font-weight:600;
}

input,
select{
    padding:14px;
    border-radius:10px;
    border:1px solid #d8d8d8;
    font-size:1rem;
    transition:.3s;
}

input:focus,
select:focus{
    outline:none;
    border-color:#84BF83;
    box-shadow:0 0 15px rgba(132,191,131,.3);
}

.volgende-knop{
    grid-column:1/3;
    height:60px;
    border:none;
    border-radius:15px;
    background:linear-gradient(135deg,#84BF83,#5f9f68);
    color:white;
    font-size:1.1rem;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.volgende-knop:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 25px rgba(95,159,104,.3);
}

/* start verborgen */

.prijs-kaart{

display:none;

max-width:900px;
width:100%;
margin:auto;

opacity:0;
transform:translateY(40px) scale(.95);

transition:.5s ease;

}


/* actief */

.prijs-kaart.actief{

display:block;

opacity:1;

transform:translateY(0) scale(1);

animation:
kaartOpen .6s ease;

}



@keyframes kaartOpen{

from{

opacity:0;
transform:
translateY(60px)
scale(.9);

}


to{

opacity:1;
transform:
translateY(0)
scale(1);

}

}



.offerte-formulier.verbergen{

animation:
formClose .5s ease forwards;

}



@keyframes formClose{


to{

opacity:0;
transform:
translateY(-40px)
scale(.95);

}

}



.aanpassen-knop{
    width:100%;
    height:55px;
    border:none;
    border-radius:15px;
    background:#173f1d;
    color:white;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
}



.aanpassen-knop:hover{

transform:translateY(-3px);

box-shadow:
0 15px 30px rgba(0,0,0,.2);

}

.footer {
    background-color: #173f1d;
    margin-top: 6rem;
    padding: 1rem 1.7rem 0.85rem 1.7rem;
}

.footer-title {
    margin: 0;
    text-align: center;
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
    font-size: 1.8rem;
}

.footer-line {
    display: block;
    width: 92%;
    height: 1px;
    background-color: #f3eee5;
    margin: 1rem auto 1.3rem auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
}

.logo-footer {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.footer-heading,
.footer-contact p,
.footer-links a,
.footer-social a,
.footer-copy {
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
}

.footer-heading {
    margin: 0 0 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.86;
}

.footer-contact {
    max-width: 20rem;
}

.footer-contact p {
    margin: 0 0 0.7rem 0;
    font-size: 1.20rem;
    opacity: 0.86;
}

.footer-small {
    max-width: 18rem;
    line-height: 1.45;
    font-size: 1.05rem;
    opacity: 0.74;
}

.footer-links {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-links a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-social {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-social a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
    color: #D4A373;
}

.footer-social {
    border-left: 1px solid rgba(243, 238, 229, 0.3);
    padding-left: 2rem;
}

.footer-copy {
    margin: 0.7rem 0 0 0;
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.65;
}

.footer-copy a {
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.footer-copy a:hover {
    color: #D4A373;
    font-size: 1rem;
}

.menu-knop{
    display:none;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width: 900px) {

    header {
        justify-content: space-between;
        min-height: 5.5rem;
        padding: 0.75rem 1rem;
    }

    .logo-link {
        position: static;
        z-index: 31;
    }

    .logo {
        width: 7.5rem;
        height: 4.5rem;
    }

    .menu-knop {
        display: flex;
        position: relative;
        z-index: 31;
    }

    .navigatie {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: rgba(237, 231, 223, 0.98);
        box-shadow: 0 18px 30px rgba(134, 115, 94, 0.18);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 30;
    }

    .navigatie.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigatie ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .navigatie li {
        width: 100%;
    }

    .line1 {
        width: 100%;
        height: 1px;
    }

    .header-actions {
        position: static;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .header-actions .button1,
    .header-actions .button-offerte {
        width: 100%;
        height: 3.25rem;
        padding: 0 1rem;
    }

    /* Offertepagina */

    .offerte-formulier {
        grid-template-columns: 1fr;
    }

    .volgende-knop {
        grid-column: auto;
    }

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

    .footer-content {
        flex-direction: column;
    }
}

.banner{
    width:100%;
    height:50vh;
    min-height:280px;
    position:relative;
    overflow:hidden;
}

.banner img{
    width:98%;
    height:98%;
    object-fit:cover;
    object-position:center;
    margin:1%;
    border-radius:50px;
    opacity:0.9;
    animation:zoom 14s ease-in-out infinite alternate;
}

.banner-text{
    position:absolute;
    left:3rem;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-family:'Poppins',sans-serif;
    opacity:0.85;
    animation:fadeLeft 1s ease;
}

.banner-text h1{
    font-size:2.5rem;
    margin:0;
    font-family:'Poltawski Nowy',serif;
}

.banner-subtext{
    text-align:right;
    margin:0.5rem 1%;
    color:#777;
    font-family:'Poppins',sans-serif;
    animation:fadeUp 1s ease;
}

@keyframes zoom{
    from{transform:scale(1);}
    to{transform:scale(1.05);}
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateY(-50%) translateX(-30px);
    }
    to{
        opacity:0.85;
        transform:translateY(-50%) translateX(0);
    }
}

body{
    position:relative;
    background:
        linear-gradient(120deg, rgba(75,151,88,.08) 0 1px, transparent 1px 100%),
        linear-gradient(145deg, #F5F1ED 0%, #f8f4ee 46%, #edf5ea 100%);
    background-size:42px 42px, auto;
}

body::before,
body::after{
    content:"";
    position:fixed;
    z-index:-1;
    pointer-events:none;
}

body::before{
    width:34rem;
    height:11rem;
    right:-9rem;
    top:9rem;
    border:1px solid rgba(75,151,88,.16);
    background:linear-gradient(135deg, rgba(255,255,255,.46), rgba(212,163,115,.08));
    transform:rotate(-16deg);
    animation:achtergrondSchuif 18s ease-in-out infinite;
}

body::after{
    width:28rem;
    height:13rem;
    left:-8rem;
    bottom:8rem;
    border:1px solid rgba(212,163,115,.18);
    background:linear-gradient(135deg, rgba(23,63,29,.08), rgba(255,255,255,.34));
    transform:rotate(14deg);
    animation:achtergrondSchuif 22s ease-in-out infinite reverse;
}

.banner{
    box-shadow:0 26px 58px rgba(57,39,24,.16);
}

.banner::after{
    content:"";
    position:absolute;
    inset:1%;
    border-radius:50px;
    background:linear-gradient(90deg, rgba(23,63,29,.55), rgba(23,63,29,.12), rgba(212,163,115,.18));
    pointer-events:none;
}

.banner-text{
    z-index:1;
    max-width:640px;
}

.informatie{
    padding:56px 20px 24px;
}

.info-box{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(212,163,115,.24);
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(14px);
    box-shadow:0 24px 56px rgba(72,53,33,.11);
}

.info-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#4B9758,#D4A373);
}

.formulier-section{
    position:relative;
    padding:34px 20px 96px;
}

.offerte-formulier{
    position:relative;
    overflow:hidden;
    max-width:1050px;
    padding:0;
    border:1px solid rgba(212,163,115,.22);
    background:rgba(255,255,255,.84);
    backdrop-filter:blur(16px);
    box-shadow:0 30px 70px rgba(72,53,33,.14);
}

.offerte-formulier::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:8px;
    background:linear-gradient(90deg,#173f1d,#4B9758,#D4A373);
}

.form-header{
    grid-column:1/3;
    padding:2.4rem 2.4rem 0.6rem;
}

.form-header span,
.prijs-top span,
.opties-overzicht > span{
    display:inline-flex;
    margin-bottom:.65rem;
    padding:.42rem .78rem;
    border-radius:999px;
    background:rgba(75,151,88,.1);
    color:#32713c;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.form-header h2,
.prijs-top h2{
    margin:0;
    color:#2f261f;
    font-family:'Poltawski Nowy',serif;
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.05;
}

.form-header p,
.prijs-top p{
    max-width:680px;
    margin:.9rem 0 0;
    color:#6f665f;
    line-height:1.7;
}

.form-group{
    padding:0 2.4rem;
}

.form-group:nth-last-of-type(-n+2){
    padding-bottom:.4rem;
}

label{
    color:#35271f;
    font-size:.92rem;
}

input,
select{
    width:100%;
    border:1px solid rgba(72,53,33,.16);
    background:#fffdf9;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(72,53,33,.045);
}

input:hover,
select:hover{
    border-color:rgba(75,151,88,.34);
}

input:focus,
select:focus{
    border-color:#4B9758;
    box-shadow:0 0 0 4px rgba(75,151,88,.12), 0 12px 24px rgba(75,151,88,.12);
    transform:translateY(-1px);
}

.volgende-knop{
    position:relative;
    overflow:hidden;
    margin:0 2.4rem 2.4rem;
    width:calc(100% - 4.8rem);
    background:linear-gradient(135deg,#173f1d,#4B9758 55%,#D4A373);
    box-shadow:0 18px 36px rgba(75,151,88,.24);
}

.volgende-knop::before{
    content:"";
    position:absolute;
    top:-30%;
    left:-45%;
    width:35%;
    height:160%;
    background:linear-gradient(110deg, transparent, rgba(255,255,255,.42), transparent);
    transform:rotate(12deg);
    transition:left .55s ease;
}

.volgende-knop:hover::before{
    left:115%;
}

.prijs-kaart{
    position:relative;
    overflow:hidden;
    max-width:920px;
    padding:2.4rem;
    border:1px solid rgba(212,163,115,.26);
    border-radius:30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(249,244,237,.92)),
        #fff;
    box-shadow:0 32px 80px rgba(45,35,25,.16);
}

.prijs-kaart::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:9px;
    background:linear-gradient(90deg,#173f1d,#4B9758,#D4A373);
}

.prijs-kaart::after{
    content:"";
    position:absolute;
    right:-7rem;
    top:4rem;
    width:22rem;
    height:8rem;
    border:1px solid rgba(75,151,88,.16);
    background:rgba(75,151,88,.06);
    transform:rotate(-18deg);
    pointer-events:none;
}

.prijs-kaart.actief{
    animation:kaartOpenNieuw .75s cubic-bezier(.2,.8,.2,1) both;
}

.prijs-top{
    position:relative;
    z-index:1;
    margin-bottom:1.5rem;
}

.prijs-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

.prijs-regel{
    display:flex;
    flex-direction:column;
    gap:.45rem;
    min-height:7rem;
    padding:1.15rem;
    border:1px solid rgba(72,53,33,.11);
    border-radius:20px;
    background:rgba(255,255,255,.76);
    box-shadow:0 14px 28px rgba(72,53,33,.07);
}

.prijs-regel span{
    color:#756a60;
    font-size:.84rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.prijs-regel strong{
    margin-top:auto;
    color:#2f261f;
    font-size:1.24rem;
    line-height:1.25;
}

.opties-overzicht{
    position:relative;
    z-index:1;
    margin-top:1rem;
    padding:1.2rem;
    border-radius:20px;
    background:#173f1d;
    color:#f7f1e9;
    box-shadow:0 18px 34px rgba(23,63,29,.18);
}

.opties-overzicht > span{
    margin-bottom:.9rem;
    background:rgba(255,255,255,.12);
    color:#f7f1e9;
}

.opties-overzicht ul{
    display:flex;
    flex-wrap:wrap;
    gap:.65rem;
    margin:0;
    padding:0;
    list-style:none;
}

.opties-overzicht li{
    padding:.58rem .78rem;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    background:rgba(255,255,255,.09);
    font-size:.92rem;
}

.totaal{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin-top:1rem;
    padding:1.25rem 1.4rem;
    border-radius:22px;
    background:linear-gradient(135deg,#D4A373,#f0c18f);
    color:#2f261f;
    box-shadow:0 18px 34px rgba(212,163,115,.28);
}

.totaal span{
    font-size:1rem;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.totaal strong{
    font-size:clamp(2rem,5vw,3.4rem);
    line-height:1;
}

.aanpassen-knop{
    position:relative;
    z-index:1;
    background:linear-gradient(135deg,#173f1d,#2f6d39);
}

.prijs-acties{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:.85rem;
    margin-top:1rem;
}

.contact-prijs-knop{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:55px;
    padding:.85rem 1rem;
    border-radius:15px;
    background:linear-gradient(135deg,#D4A373,#f0c18f);
    color:#2f261f;
    font-size:1rem;
    font-weight:800;
    text-align:center;
    box-shadow:0 16px 30px rgba(212,163,115,.25);
    transition:.3s;
}

.contact-prijs-knop:hover{
    color:#2f261f;
    font-size:1rem;
    transform:translateY(-3px);
    box-shadow:0 22px 42px rgba(212,163,115,.34);
}

.aanpassen-knop:hover{
    box-shadow:0 18px 36px rgba(23,63,29,.24);
}

.offerte-formulier.verbergen{
    animation:formulierNaarKaart .55s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes formulierNaarKaart{
    to{
        opacity:0;
        transform:translateY(-24px) scale(.975);
        filter:blur(4px);
    }
}

@keyframes kaartOpenNieuw{
    from{
        opacity:0;
        transform:translateY(44px) scale(.94);
        filter:blur(5px);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
        filter:blur(0);
    }
}

@keyframes achtergrondSchuif{
    0%,100%{
        translate:0 0;
    }
    50%{
        translate:18px -14px;
    }
}

@media(max-width:900px){
    body{
        background-size:34px 34px, auto;
    }

    .form-header{
        grid-column:auto;
    }

    .form-header,
    .form-group{
        padding-left:1.25rem;
        padding-right:1.25rem;
    }

    .volgende-knop{
        width:calc(100% - 2.5rem);
        margin-left:1.25rem;
        margin-right:1.25rem;
    }

    .prijs-kaart{
        padding:1.4rem;
        border-radius:24px;
    }

    .prijs-grid{
        grid-template-columns:1fr;
    }

    .totaal{
        align-items:flex-start;
        flex-direction:column;
    }

    .prijs-acties{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    body::before,
    body::after{
        opacity:.48;
    }

    .informatie{
        padding-top:34px;
    }

    .info-box,
    .offerte-formulier,
    .prijs-kaart{
        border-radius:20px;
    }

    .form-header h2,
    .prijs-top h2{
        font-size:1.8rem;
    }

    .prijs-regel{
        min-height:auto;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 1.2rem 0.8rem 1.2rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-line {
        width: 90%;
        margin: 0.8rem auto 1.2rem auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .logo-footer {
        width: 7rem;
        height: 7rem;
    }

    .footer-contact {
        max-width: 18rem;
    }

    .footer-heading {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .footer-contact p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-small {
        max-width: 18rem;
        font-size: 0.95rem;
    }

    .footer-links,
    .footer-social {
        min-width: 0;
        width: 100%;
        padding-top: 0;
    }

    .footer-links a,
    .footer-social a {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a:hover,
    .footer-social a:hover {
        font-size: 1.2rem;
    }

    .footer-social {
        border-left: none;
        border-top: 1px solid rgba(243, 238, 229, 0.3);
        padding-left: 0;
        padding-top: 1.2rem;
        margin-top: 0;
    }

    .footer-copy {
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }
}