/* Import einer Schriftart, die dem Beispiel ähnelt */
@import url('fonts/fonts.css');

/* Globale Verkleinerung der Darstellung (entspricht ca. 80% Browser-Zoom) */
@media screen {
    :root { --app-zoom: 0.8; }
    html { zoom: var(--app-zoom); }
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Header und Navigation */
header {
    width: 100%;
    background-color: #EDEBE1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { height: 60px; width: auto; }
nav a { color: #004d40; text-decoration: none; margin-left: 30px; font-size: 16px; }
.cart-icon { font-size: 24px; }

/* Hauptsektion */
.pricing-section {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.pricing-section h1 {
    font-family: 'Lora', serif;
    color: #004d40;
    font-size: 42px;
    margin-bottom: 50px;
}

/* Preiskarten */
.pricing-container { display: flex; justify-content: center; gap: 30px; align-items: flex-start; }
.pricing-card { background-color: #EDEBE1; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; width: 300px; text-align: left; position: relative; }
.pricing-card h2 { font-size: 24px; color: #004d40; margin: 0; }
.pricing-card .subtitle { font-size: 18px; color: #004d40; margin-top: 5px; }
.pricing-card .price { font-size: 48px; font-weight: bold; color: #004d40; margin: 20px 0; }
.pricing-card .price span { font-size: 16px; font-weight: normal; }
.pricing-card ul { list-style: none; padding: 0; margin: 20px 0; color: #555; }
.pricing-card ul li { margin-bottom: 10px; }
.pricing-card.recommended { border: 2px solid #004d40; background-color: #004d40; color: white; }
.pricing-card.recommended h2, .pricing-card.recommended .subtitle, .pricing-card.recommended .price, .pricing-card.recommended ul { color: white; }
.recommendation-banner { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: #ffc107; color: #333; padding: 5px 20px; border-radius: 15px; font-weight: bold; font-size: 14px; }

/* Haupt-Button */
.cta-button {
    display: block;
    width: 100%;
    background-image: linear-gradient(to top, #ffc107, #f7d56a);
    border: none;
    color: #333;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    box-sizing: border-box;
    transition: transform 0.2s;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); }

/*
========================================
Info & Checklist Sektionen
========================================
*/
.info-section {
    max-width: 1200px;
    /* GEÄNDERT: Abstand unten weiter reduziert */
    margin: 80px auto 20px auto;
    padding: 20px;
    text-align: left;
}

.checklist-section {
    /* GEÄNDERT: Abstand oben weiter reduziert */
    margin: 20px auto;
}


.info-section h2, .checklist-section h2 {
    font-family: 'Lora', serif;
    color: #004d40;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.info-section p, .checklist-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #004d40;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

/* Tabellen-Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

table th, table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
    font-size: 16px;
    color: #004d40;
}

table thead th, table .row-header {
    background-color: #004d40;
    color: white;
    font-weight: bold;
    border-color: rgba(255, 255, 255, 0.25);
}

table .row-header {
    text-align: left;
}

table tbody td {
    background-color: #ffffff;
    font-weight: bold;
}

/* Checklisten-Buttons */
.button-container {
    text-align: center;
    margin-top: 30px;
}

.checklist-btn {
    display: inline-block;
    /* GEÄNDERT: Stile vom .cta-button übernommen */
    background-image: linear-gradient(to top, #ffc107, #f7d56a);
    color: #333;
    padding: 12px 25px;
    border-radius: 5px; /* Angepasst an .cta-button */
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: transform 0.2s;
    border: none;
}

.checklist-btn:hover {
    /* GEÄNDERT: Hover-Effekt vom .cta-button übernommen */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/*
========================================
Video Sektion
========================================
*/
.video-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
}

.video-container {
    display: flex;
    align-items: center;
    gap: 40px; /* Abstand zwischen Text und Video */
}

.video-text {
    flex: 1; /* Nimmt 50% der Breite ein */
    text-align: left;
}

.video-text h2 {
    font-family: 'Lora', serif;
    color: #004d40;
    font-size: 36px;
    text-align: left;
}

.video-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #004d40;
    text-align: left;
    max-width: none; /* Hebt die Zentrierung von .info-section p auf */
    margin: 20px 0 0 0;
}

.video-embed {
    flex: 1; /* Nimmt 50% der Breite ein */
}

.video-embed iframe,
.video-embed video {
    width: 100%;
    aspect-ratio: 16 / 9; /* Sorgt für das korrekte 16:9 Videoformat */
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.centered-outro {
    font-family: 'Lora', serif;
    color: #004d40;
    font-size: 28px;
    text-align: center;
    margin-top: 80px;
}
/* ... Alle oberen CSS-Regeln bleiben unverändert ... */


/*
========================================
Checklist Sektion
========================================
*/
.checklist-section h2 {
    margin-top: 60px;
}

.button-container {
    text-align: center;
    margin-top: 30px;
}

.checklist-btn {
    display: inline-block;
    /* GEÄNDERT: Design-Anpassung an das neue Bild */
    background-color: #f0b923;
    background-image: linear-gradient(to top, #f0b923, #f9d36a);
    color: #333;
    padding: 12px 25px;
    border-radius: 8px; /* Leicht abgerundete Ecken */
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    transition: all 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checklist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* ======================================== */
/* Footer Stile                           */
/* ======================================== */

.site-footer {
    background-color: #EDEBE1; /* Heller, warmer Braun/Beige-Ton */
    color: #555;
    padding: 50px 20px;
    font-size: 15px;
    margin-top: 60px;
    border-top: 1px solid #dcdad1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Bricht auf kleineren Bildschirmen um */
}

.footer-column {
    flex: 1;
    min-width: 280px; /* Mindestbreite pro Spalte */
}

.footer-column h2 {
    font-family: 'Lora', serif;
    color: #004d40; /* Teal aus deinem bisherigen Design */
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info {
    line-height: 1.7;
}

.contact-info strong {
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #004d40;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #dcdad1;
    text-align: center;
    font-size: 13px;
    color: #777;
}