/* Fenster Page Styles */
.fenster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    width: 100%; /* Geändert von 80% auf 90% */
    margin: -4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.fenster-info {
    background: rgba(166, 111, 20, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.fenster-info h2 {
    color: rgba(166, 111, 20, 1);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.fenster-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fenster-features {
    list-style-type: none;
    padding: 0;
}

.fenster-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.fenster-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(166, 111, 20, 1);
}

.fenster-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.fenster-video video {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    /* Hier können Sie die Darstellung des Videos anpassen */
    /*object-fit: cover; /* Geändert von contain zu cover */
    border-radius: 15px;
}

@media (max-width: 768px) {
    .fenster-grid {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem;
        grid-template-columns: 1fr;
    }
}