.hero {
    position: relative;
    background: url('../assets/images/hero.jpg') center/cover no-repeat;
    height: 60vh; /* litt lavere for mer kompakt uttrykk */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

/* Mørkere og mer synlig overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* mer kontrast */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    padding: 10px 20px; /* mer kompakt */
}

.hero h1 {
    font-size: 42px; /* litt mindre */
    margin-bottom: 8px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 16px;
}

/* Call button */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFB703;
    color: black;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font
