.hero-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

/* En lite större variant av kontaktknappen för Hero-sektionen */
.hero-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}