body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #2f4f4f;
    color: #f5f5dc;
}

/* 🔹 Topbar */
.topbar {
    text-align: left;
    padding: 15px 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* 🔹 Haupttitel */
.main-title {
    text-align: center;
    font-size: 56px;
    font-weight: bold;
    margin: 20px 0 10px;
}

/* 🔹 Untertitel */
.subtitle {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
}

/* 🔹 Fallback Header (falls noch genutzt) */
header {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    padding: 30px 10px;
}

/* 🔹 Abschnittstitel */
.section-title {
    text-align: center;
    font-size: 34px;
    margin: 60px 0 30px;
}

/* 🔹 Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* 🔹 Content-Items */
.item {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.item img {
    width: 260px;
    border-radius: 4px;
}

.text h3 {
    margin: 0 0 10px 0;
}

.text p {
    line-height: 1.6;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
    .item {
        flex-direction: column;
    }

    .item img {
        width: 100%;
    }

    .video-section {
        flex-direction: column;
        align-items: center;
    }
}

/* 🔹 Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 10px;
    font-size: 14px;
}

/* 🔹 Links */
a {
    color: #f5f5dc;
    text-decoration: underline;
}

a:visited {
    color: #f5f5dc;
}

a:hover {
    opacity: 0.7;
}

/* 🔹 Center helper */
.center-text {
    text-align: center;
}

/* 🔹 Abstand */
.spacer {
    height: 25px;
}

/* 🔹 Trademark */
sup {
    font-size: 0.6em;
    vertical-align: super;
    line-height: 0;
}

/* =========================
   EINZEL VIDEO
========================= */

.video-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.video-container video {
    width: 800px;
    max-width: 100%;
    border: 3px solid #f5f5dc;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* =========================
   ZWEI VIDEOS (FIXED HEIGHT)
========================= */

.video-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 1100px;
    flex-wrap: wrap;
}

.video-item {
    text-align: center;
    flex: 1;
    min-width: 300px;
}

/* 🔥 WICHTIG: gleiche Höhe */
.video-item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 3px solid #f5f5dc;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.video-item p {
    margin-top: 10px;
}