.asbest-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 65vh; 
    background-image: url('https://asbestsichersanieren.de/wp-content/uploads/2026/07/Unknown.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 5%;
}

.asbest-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.8) 40%, rgba(17, 24, 39, 0.0) 100%);
    z-index: 1;
}

.asbest-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.asbest-hero-badge-top {
    background: rgba(183, 28, 28, 0.95);
    padding: 8px 15px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 25px;
    align-self: flex-start;
}

.asbest-hero h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left !important;
}

.asbest-hero p {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left !important;
    max-width: 650px;
}

.asbest-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.asbest-hero-badges span {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.asbest-hero-btn {
    background: #b71c1c;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    align-self: flex-start;
}

.asbest-hero-btn:hover {
    background: #d32f2f;
}

/* Spezielle Handy-Ansicht (für Safari und Co.) */
@media (max-width: 768px) {
    .asbest-hero {
        min-height: auto; 
        padding: 60px 20px 80px 20px;
        background-position: 80% center; 
    }
    .asbest-hero-overlay {
        background: linear-gradient(90deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.9) 70%, rgba(17, 24, 39, 0.3) 100%);
    }
    .asbest-hero-content {
        align-items: flex-start;
    }
    .asbest-hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.3;
    }
    .asbest-hero p { 
        font-size: 1.05rem; 
    }
    .asbest-hero-badges span {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    .asbest-hero-btn {
        width: 100%; 
        justify-content: center;
    }
}