/* =========================
   Contactpagina
========================= */
.contact-main {
    padding: 40px 3% 80px;
    box-sizing: border-box;
    min-height: calc(100vh - 200px); 
    display: flex;
    align-items: center;
}

/* =========================
   Binnenste container
========================= */
.contact-inner {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    align-items: center;
}

/* =========================
   Tekstblokken
========================= */
.contact-address {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-decoration: none;
}

.contact-email {
    font-size: 11px;
    line-height: 1.6;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-decoration: none;
}

.contact-email:hover {
    color: #555;
}

/* =========================
   Telefoonnummers
========================= */
.contact-phones {
    display: flex;
    flex-direction: column;  /* onder elkaar */
    gap: 4px;
    align-items: center;
}

.contact-phone {
    font-size: 11px;
    line-height: 1.6;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-decoration: none;
}

.contact-phone strong {
    font-weight: 500;
    color: #000;
}

.contact-phone:hover {
    color: #555;
}

/* =========================
   BTW
========================= */
.contact-btw {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* =========================
   Instagram icoon
========================= */
.contact-instagram {
    display: block;
    width: 16px;
    height: 16px;
    color: #888;
}

.contact-instagram svg {
    width: 100%;
    height: 100%;
    fill: #888;
    display: block;
    transition: fill 0.2s ease;
}

.contact-instagram:hover svg {
    fill: #555;
}

/* =========================
   Juridisch blok
========================= */
.contact-legal {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-legal p {
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.contact-legal-link {
    color: #888;
    text-decoration: none;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.contact-legal-link:hover {
    color: #555;
}

/* =========================
   Responsive verfijning
========================= */
@media (max-width: 767px) {
    .contact-main {
        padding: 30px 3% 60px;
    }
}