/* PAGE HEADERS (Tjenester, Kontakt etc.) */
.page-header {
    margin-top: 90px;
    text-align: center;
    padding: 20px;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-header p {
    max-width: 650px;
    margin: auto;
    opacity: 0.8;
    font-size: 1rem;
}

/* ====== KONTAKT PAGE ====== */

/* HERO */
.hero-kontakt {
    margin-top: 70px;
    width: 100%;
    height: 300px;
    background-image: url('https://digitur.no/wp-content/uploads/2025/05/DJI_0110-2-scaled.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #0a2a43;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-kontakt h1 {
    color: white;
    font-size: 2.4rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.35);
    background: rgba(0,0,0,0.45);
    padding: 12px 25px;
    border-radius: 6px;
}

/* CONTACT BOXES */
.contact-section {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(0,0,0,0.08);
    padding: 35px 40px;
}

.contact-section h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.contact-box {
    padding: 20px;
    border-radius: 10px;
    background: #f4f7fa;
    border-left: 4px solid #0a2a43;
}

.contact-box strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px;
}

/* MOBILE */
@media (max-width: 700px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    .hero-kontakt {
        height: 230px;
    }
    .hero-kontakt h1 {
        font-size: 1.7rem;
    }
}
