.contact-info-box {
    max-width: 500px;
    margin: 40px auto 24px auto;
    background: #f7f9fc;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 22px 18px 22px;
    color: #222;
}
.contact-company {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 16px;
    text-align: center;
}
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-details li {
    font-size: 1.08rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-label {
    font-weight: 500;
    color: #3949ab;
    min-width: 80px;
    display: inline-block;
}
.contact-details a {
    color: #1a237e;
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-details a:hover {
    color: #3949ab;
}
.contact-wrapper {
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 24px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #1a237e;
}
.contact-form .form-control {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #dbe2ef;
    font-size: 1rem;
    background: #f7f9fc;
    margin-top: 4px;
    box-sizing: border-box;
}
.contact-form textarea.form-control {
    resize: vertical;
}
.btn-contact {
    background: #1a237e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:  0.2s;
}
.btn-contact:hover {
    background: #3949ab;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 0;
    z-index: 100;
}
.btn-tjenester {
    background-color: #1a237e;
    color: #fff;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.25rem;
    font-weight: 500;
}
.footer .footer-logo {
    margin-top: 48px;
    margin-bottom: 30px;
    padding: 10px 0;
}
.footer .footer-logo {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 10px 0;
}
.footer a {
    color: #fff !important;
}
.footer a:hover {
    color: #e0e0e0 !important;
}
.footer, .footer * {
    color: #fff !important;
}
.footer .btn-primary {
    background-color: #fff;
    color: #000 !important;
    border: 2px solid rgb(0, 27, 108);
}

.footer .offering-1 {
    border-bottom: none !important;
}
/* Sticky footer */
html {
    min-height: 100%;
    position: relative;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer {
    margin-top: auto;
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
}
body {
    font-family: 'DM Sans', 'DM Sans Fallback', Arial, sans-serif;
    padding-top: 70px; /* Juster for navbar høyde */
}

.offering-1, .offering-2 {
    background-color: rgb(0, 27, 108);
    color: #fff;
}
/* Set navbar background color */
.navbar {
	background-color: rgb(0, 27, 108) !important;
	color: #fff;
    height: 70px;
    min-height: 70px;
    margin-bottom: 0;
    top: 0;
    z-index: 1020;
}

@media (max-width: 576px) {
    .navbar-nav {
        background: rgb(0, 27, 108) !important;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        padding: 12px 0 16px 0;
    }
    .navbar-nav .nav-item {
        background: rgb(0, 27, 108) !important;
        margin: 0 8px 8px 8px;
        border-radius: 8px;
        transition: background 0.2s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .navbar-nav .nav-link {
        color: #fff !important;
        font-size: 1.15rem;
        padding: 14px 18px;
        border-radius: 8px;
        display: block;
        text-align: center;
        transition: background 0.2s, color 0.2s;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-item:hover {
        background: #3949ab !important;
        color: #fff !important;
    }
}

.navbar .navbar-nav .nav-link,
.navbar .navbar-brand,
.navbar .navbar-toggler {
	color: #fff !important;
}


.offering-3 {
    background-image: url('/images/offering-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 70px); /* Fyll resterende skjermhøyde + navbar */
    color: #fff; /* Hvit tekst for kontrast */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offering-3::before {   
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Blå tint, juster opacity etter behov */
    z-index: 1;
}

.offering-3 > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    .navbar-toggler {
        background: #fff;
        border: 2px solid #1a237e;
        border-radius: 8px;
        padding: 10px 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        margin-right: 8px;
        font-size: 1.5rem;
        transition:  0.2s, border 0.2s;
    }
    .navbar-toggler:focus, .navbar-toggler:hover {
        background: #e3e7fa;
        border-color: #3949ab;
    }
    .navbar-toggler-icon {
        background-image: none;
        width: 28px;
        height: 28px;
        display: inline-block;
        position: relative;
    }
    .navbar-toggler-icon::before, .navbar-toggler-icon::after, .navbar-toggler-icon span {
        content: '';
        display: block;
        height: 4px;
        width: 100%;
        background: #1a237e;
        margin: 5px 0;
        border-radius: 2px;
        transition:  0.2s;
    }
}
