.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    gap: 60px;
}

.willkommen {
    text-align: center;
    font-size: 3.5rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-image img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    object-position: center 20%;
    padding: 0;
    border-radius: 50%;
    border: 4px solid var(--primary-orange);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-panel);
    transition: var(--transition-slow);
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.4);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-btns {
    margin-top: 40px;
}

.contact-flex-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    margin-top: 30px;
    width: 100%;
}

.contact-form {
    flex: 1;
}

.map-box {
    flex: 1;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 992px) {
    .contact-flex-container {
        flex-direction: column;
    }
    
    .map-box {
        height: 350px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }
}