/* ÜBER UNS */

.ueber-uns-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.ueber-uns-hero {
    text-align: center;
    margin-bottom: 50px;
}

.ueber-uns-hero h2 {
    font-size: 42px;
    font-weight: 900;
    color: #3674B5;
    margin-bottom: 12px;
}

.ueber-uns-intro {
    font-size: 18px;
    color: #3674B5;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ueber-uns-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

/* PROFILBILD BOX */
.ueber-uns-profil-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 28px 32px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.profil-bild {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(54,116,181,0.2);
    border: 4px solid #A1E3F9;
}

.profil-text h3 {
    color: #224E7C;
    font-size: 24px;
    margin-bottom: 12px;
}

.profil-text p {
    color: #3674B5;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

/* TEXT BOXEN */
.ueber-uns-text-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 28px 32px;
    text-align: left;
}

.ueber-uns-text-box h3 {
    color: #224E7C;
    font-size: 24px;
    margin-bottom: 14px;
}

.ueber-uns-text-box p {
    color: #3674B5;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 10px;
}

/* BEWERTUNGS BADGES */
.bewertung-badges {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.airbnb-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0f8ff;
    border-radius: 12px;
    padding: 16px 20px;
    border: 1px solid #d0e8f5;
    flex: 1 1 200px;
}

.booking-badge {
    background: #f0f4ff;
    border-color: #c5d3f0;
}

.badge-score {
    font-size: 32px;
    font-weight: 900;
    color: #224E7C;
    white-space: nowrap;
}

.booking-score {
    color: #003580;
}

.badge-title {
    font-weight: 700;
    color: #224E7C;
    font-size: 15px;
}

.airbnb-red { color: #ff385c; font-weight: 800; }
.booking-blue { color: #003580; font-weight: 800; }

.badge-sub {
    font-size: 13px;
    color: #3674B5;
}

/* KONTAKT CTA */
.kontakt-section {
    background: #3674B5;
    border-radius: 15px;
    text-align: center;
    padding: 40px 30px;
    color: white;
}

.kontakt-section h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
}

.kontakt-section p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.kontakt-button {
    background-color: white !important;
    color: #3674B5 !important;
    font-size: 16px;
    padding: 14px 36px;
}

.kontakt-button:hover {
    background-color: #EAFFFA !important;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .ueber-uns-profil-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profil-bild {
        width: 140px;
        height: 140px;
    }

    .ueber-uns-text-box { padding: 20px; }
    .ueber-uns-hero h2 { font-size: 30px; }

    .bewertung-badges {
        flex-direction: column;
    }

    .airbnb-badge {
        flex: 1 1 100%;
    }
}