/* ueber-uns.css - Styles for the About Us page */

.ueber-uns-page {
    padding-bottom: 60px;
}

.page-hero-centered {
    padding: 80px 0;
    text-align: center;
}

.page-hero-centered h1 {
    font-size: 3.8rem;
    color: #1a202c;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.intro-subheading {
    font-size: 2rem;
    color: #1B293E;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.intro-image-container {
    width: 100%;
}

.intro-image {
    width: 100%;
    height: auto;
    border-radius: 0; 
    display: block;
}

.video-container-full {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px; 
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.uber-uns-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .page-hero-centered {
        padding: 40px 0;
    }
    .page-hero-centered h1 {
        font-size: 2.5rem;
    }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-subheading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .video-container-full {
        width: 100%;
        margin-top: 60px;
    }
    .uber-uns-intro {
        gap: 40px;
        margin-bottom: 60px;
    }
}
