* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --border-radius: 18px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --text-light: #86868b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #1d1d1f;
    background-color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
}

/* Temporary Header Banner */
#top-banner {
    background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    width: 100%;
    z-index: 1000;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Apple-Stil Dropdown-Menü - ohne Transparenz */
nav {
    display: flex;
}

/* Container für jeden Menüpunkt */
.nav-item {
    position: relative;
    margin-left: 30px;
}

/* Styling für die Links in der Hauptnavigation */
.nav-item>a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 14px 0;
    display: inline-block;
}

.nav-item:hover>a {
    opacity: 1;
}

/* Das Dropdown-Menü */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    /* Solider weißer Hintergrund ohne Transparenz */
    min-width: 220px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
}

/* Animation beim Hover */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Styling für die Links im Dropdown */
.dropdown-link {
    display: block;
    padding: 10px 25px;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    text-align: left;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: #f5f5f7;
    /* Etwas dunkleres Grau beim Hover ohne Transparenz */
}

/* Abschnitt-Überschriften im Dropdown */
.dropdown-section {
    padding: 10px 25px 5px;
    color: #6e6e73;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: left;
}

/* Trennlinie im Dropdown */
.dropdown-divider {
    height: 1px;
    background-color: #d2d2d7;
    /* Apple-typische Trennlinienfarbe */
    margin: 8px 0;
}

/* Spezielle Hervorhebung für bestimmte Links */
.dropdown-link.featured {
    color: #0071e3;
    font-weight: 500;
}

/* Kleines Pfeil-Icon als Indikator für Dropdown-Menüs */
.nav-item>a::after {
    content: '▾';
    font-size: 8px;
    margin-left: 4px;
    position: relative;
    top: -2px;
    opacity: 0.6;
}

.nav-item:hover>a {
    opacity: 1;
}

/* Animation beim Hover */
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Styling für die Links im Dropdown */
.dropdown-link {
    display: block;
    padding: 10px 25px;
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    text-align: left;
    white-space: nowrap;
}

.dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

/* Abschnitt-Überschriften im Dropdown */
.dropdown-section {
    padding: 10px 25px 5px;
    color: #6e6e73;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-align: left;
}

/* Trennlinie im Dropdown */
.dropdown-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

/* Spezielle Hervorhebung für bestimmte Links */
.dropdown-link.featured {
    color: #0071e3;
    font-weight: 500;
}

/* Kleines Pfeil-Icon als Indikator für Dropdown-Menüs */
.nav-item>a::after {
    content: '▾';
    font-size: 8px;
    margin-left: 4px;
    position: relative;
    top: -2px;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 22px;
}

/* Text-Stil */
h1 {
    font-size: 56px;
    line-height: 1.07;
    font-weight: 600;
    letter-spacing: -0.005em;
}

h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.002em;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    line-height: 1.14;
    font-weight: 600;
    letter-spacing: 0.007em;
    margin-bottom: 12px;
}

p {
    font-size: 17px;
    line-height: 1.47;
    letter-spacing: -0.022em;
    margin-bottom: 20px;
}

p.hero-text {
    font-size: 28px;
    line-height: 1.14;
    font-weight: 400;
    letter-spacing: 0.007em;
    margin-bottom: 30px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #d2d2d7;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    margin-left: -90px;
    /* Kompensiert das Logo für echte Zentrierung */
}

.account-nav {
    margin-left: auto;
}

.logo {
    height: 36px;
}

nav {
    display: flex;
}

nav a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 14px;
    margin-left: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

/* Hero-Sektion mit Gradient und Hintergrundbild */
.hero {
    position: relative;
    text-align: center;
    padding: 180px 0 150px;
    margin-bottom: 0;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Bilder/sights50.png');
    /* Hier das Bild mit deutschen Sehenswürdigkeiten einfügen */
    background-size: cover;
    background-position: 90% center;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, white);
    z-index: -1;
}

.hero h1,
.hero p {
    color: #1d1d1f;
    /* Dunkle Textfarbe */
    position: relative;
    z-index: 2;
    text-shadow: none;
    /* Entfernen des Schattens oder einen subtilen hinzufügen */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.7);
    /* Semi-transparenter weißer Hintergrund */
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    /* Verschwommener Hintergrund */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Button im Apple-Stil */
.apple-button {
    display: inline-block;
    padding: 12px 22px;
    background-color: white;
    color: #0071e3;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.apple-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.apple-button.blue {
    background-color: #0071e3;
    color: white;
}

.apple-button.blue:hover {
    background-color: #0077ed;
}

/* Wellenförmiger Übergang */
.wave-divider {
    position: relative;
    height: 150px;
    background: #fff;
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    transform: translateY(1px);
}

/* Features-Sektion */
.features-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.features-heading {
    text-align: center;
    margin-bottom: 60px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #4b6cb7;
}

/* Benutzerbereich Styling */
.account-section {
    background-color: #f5f5f7;
    padding: 100px 0;
    position: relative;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.membership-badge {
    padding: 8px 16px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
}

.membership-badge.active {
    background-color: #e5f6ea;
    color: #34c759;
}

.membership-badge.paused {
    background-color: #fff8e6;
    color: #ff9500;
}

.membership-badge.inactive {
    background-color: #f2f2f7;
    color: #8e8e93;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.account-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}

.account-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
    z-index: 10;
}

.account-card-header {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-card-content {
    padding: 25px 30px;
}

.status-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Telegram Info Box unter Kurskarten */
.telegram-info-box {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.telegram-info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
}

.telegram-info-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.telegram-info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.telegram-info-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.telegram-info-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.telegram-info-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .telegram-info-box {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .telegram-info-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .telegram-info-icon {
        width: 60px;
        height: 60px;
    }

    .telegram-info-icon svg {
        width: 30px;
        height: 30px;
    }

    .telegram-info-text h3 {
        font-size: 20px;
    }

    .telegram-info-text p {
        font-size: 14px;
    }
}

.status-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-circle.active {
    background-color: #34c759;
}

.status-circle.paused {
    background-color: #ff9500;
}

.status-circle.inactive {
    background-color: #8e8e93;
}

.expiry-date {
    font-weight: 600;
    margin-bottom: 15px;
}

.courses-list {
    list-style: none;
}

.checkbox-group label a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.courses-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
}

.courses-list li:last-child {
    border-bottom: none;
}

/* Tab Navigation */
.account-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-button.active {
    opacity: 1;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0071e3;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Rechnungstabelle */
.invoices-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.invoices-table th,
.invoices-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invoices-table th {
    font-weight: 600;
    color: #6e6e73;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.invoices-table tr:last-child td {
    border-bottom: none;
}

.invoice-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
}

.invoice-status.pending {
    background-color: #fff8e6;
    color: #ff9500;
}

.invoice-status.paid {
    background-color: #e5f6ea;
    color: #34c759;
}

.invoice-status.overdue {
    background-color: #ffebeb;
    color: #ff3b30;
}

.action-button {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 980px;
}

/* Benachrichtigungen */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(120%);
    transition: transform 0.3s ease-out;
    z-index: 9999;
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 12px;
}

.notification.success .notification-icon {
    background-color: #34c759;
    color: white;
}

.notification.error .notification-icon {
    background-color: #ff3b30;
    color: white;
}

.notification-message {
    font-weight: 500;
}

/* Zahlungsmethoden im Modal */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method input[type="radio"]:checked+label {
    background-color: rgba(0, 113, 227, 0.1);
    box-shadow: 0 0 0 2px #0071e3;
}

.payment-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.bank-icon {
    background-image: url('images/bank-icon.svg');
}

.paypal-icon {
    background-image: url('images/paypal-icon.svg');
}

.card-icon {
    background-image: url('images/card-icon.svg');
}

.payment-details {
    display: none;
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.payment-details.active {
    display: block;
}

.payment-note {
    font-size: 14px;
    color: #8e8e93;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Kurse-Sektion */
.courses-section {
    background-color: #f5f5f7;
    padding: 100px 0;
    position: relative;
}

.courses-heading {
    text-align: center;
    margin-bottom: 60px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.course-card {
    cursor: pointer;
    /* Zeigt an, dass die Karte klickbar ist */
    /* Beibehaltung der bestehenden Stile */
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Overlay für den Hintergrund */
.modal-overlay {
    display: none;
    /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dunkler Hintergrund */
    backdrop-filter: blur(5px);
    /* Weichzeichner-Effekt */
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/* Modal-Container */
.course-modal {
    display: none;
    /* Standardmäßig ausgeblendet */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    /* Startposition für Animation */
    background-color: white;
    border-radius: 20px;
    /* Abgerundete Ecken */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* Stärkerer Schatten */
    z-index: 1001;
    max-width: 500px;
    /* Breite des Modals */
    width: 90%;
    opacity: 0;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    overflow: hidden;
    /* Verhindert, dass Inhalt überläuft */
}

/* Sichtbarer Zustand für Overlay und Modal */
.modal-overlay.active,
.course-modal.active {
    display: block;
    /* Machen Elemente sichtbar */
    opacity: 1;
}

.course-modal.active {
    transform: translate(-50%, -50%) scale(1);
    /* Endposition für Animation */
}

/* Inhalt des Modals */
.course-modal-content {
    padding: 30px 35px;
    max-height: 70vh;
    /* Maximale Höhe, falls viel Text */
    overflow-y: auto;
    /* Scrollbar bei Bedarf */
}

.course-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #1d1d1f;
    text-align: center;
}

.course-modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e73;
    margin-bottom: 25px;
    text-align: left;
}

/* Schließen-Button */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e8e8ed;
    /* Heller Grauton */
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    color: #6e6e73;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close-btn:hover {
    background-color: #d2d2d7;
    /* Etwas dunkler */
    color: #1d1d1f;
}

/* Verhindert Scrollen des Hintergrunds, wenn Modal offen ist */
body.modal-open {
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Blauer Streifen oben - immer sichtbar */
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
    z-index: 5;
}

.course-card-content {
    padding: 35px 25px 30px 25px;
    /* Mehr top padding für Badge */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card-content>div:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card h3 {
    font-size: 22px;
    color: #1d1d1f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 66px;
}

.course-card p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.course-details {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 180px;
    /* Feste Mindesthöhe für einheitliche Details-Bereiche */
    display: flex;
    flex-direction: column;
}

.course-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #6e6e73;
    min-height: 36px;
}

.course-price-minimal {
    margin-top: auto;
    /* Schiebt den Preis nach unten */
    padding-top: 15px;
    border-top: 2px solid rgba(75, 108, 183, 0.1);
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-details {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.course-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #6e6e73;
    min-height: 36px;
}

.course-price-minimal {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(75, 108, 183, 0.1);
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-details {
    margin-top: auto;
    /* Schiebt Details nach unten */
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #6e6e73;
    min-height: 36px;
    /* Einheitliche Höhe für Details */
}

.course-price-minimal {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(75, 108, 183, 0.1);
    min-height: 65px;
    /* Feste Höhe für Preisbereich */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Icon-Stil wie bei feature cards */
.course-icon {
    font-size: 48px;
    /* Gleiche Größe wie feature-icon */
    margin-bottom: 20px;
    color: #4b6cb7;
    display: block;
}

/* Kurs-Details besser formatieren */
.course-details {
    margin: 20px 0;
    text-align: left;
}

/* Bild Container anpassen */
.course-image-container {
    max-height: 200px;
    overflow: hidden;
}

/* Pricing */
.pricing-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(245, 245, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card.highlighted {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    transform: translateY(-20px) scale(1.05);
}

.pricing-card.highlighted h3,
.pricing-card.highlighted .price {
    color: white;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlighted:hover {
    transform: translateY(-30px) scale(1.05);
}

.price {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
    color: #4b6cb7;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price-period {
    font-size: 16px;
    opacity: 0.7;
    margin-left: 5px;
}

.price-note {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 30px;
}

.price-features {
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    list-style: none;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4b6cb7;
    font-weight: bold;
}

.pricing-card.highlighted .price-features li::before {
    color: white;
}

/* Über mich */
.about-section {
    background-color: #f5f5f7;
    padding: 100px 0;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-width: 80%;
    /* Reduziert die maximale Breite auf 80% des Containers */
    margin: 0 auto;
    /* Zentriert das Bild im Container */
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    max-width: 400px;
    /* Begrenzt die maximale Breite */
    object-fit: cover;
    /* Sorgt dafür, dass das Bild proportional verkleinert wird */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 108, 183, 0.2) 0%, rgba(24, 40, 72, 0.4) 100%);
}

/* Methode */
.method-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.method-heading {
    text-align: center;
    margin-bottom: 60px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.method-card.highlighted {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 15px 40px rgba(75, 108, 183, 0.3);
}

.method-card.highlighted h3 {
    color: white;
}

.method-card.highlighted h3::after {
    background: white;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.method-card.highlighted:hover {
    transform: translateY(-30px) scale(1.05);
    box-shadow: 0 20px 50px rgba(75, 108, 183, 0.4);
}

.method-card h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.method-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
}

/* Standort */
.location-section {
    background-color: #f5f5f7;
    padding: 100px 0;
    position: relative;
}

.location-heading {
    text-align: center;
    margin-bottom: 60px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin: 40px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* CTA-Sektion */
.cta-section {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('/api/placeholder/1920/1080');
background-size: cover;
background-position: center;*/
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: #1d1d1f;
    padding: 80px 0 40px;
    color: #f5f5f7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 15px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Spezifische Farben für die Icons */
.social-link.facebook {
    background-color: #3b5998;
    /* Facebook Blau */
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    /* Instagram Farbverlauf */
}

.social-link.linkedin {
    background-color: #0077b5;
    /* LinkedIn Blau */
}

.social-link svg {
    fill: white;
    /* Weiße Icons auf farbigem Hintergrund */
    width: 18px;
    height: 18px;
}

/* Hover-Effekte etwas verstärken */
.social-link.facebook:hover {
    background-color: #4c70ba;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.9;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.social-link.linkedin:hover {
    background-color: #0090dd;
}

.social-links {
    display: flex;
    /* Macht die Icons horizontal nebeneinander */
    gap: 15px;
    /* Legt den Abstand zwischen den Icons fest */
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    color: #f5f5f7;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    opacity: 1;
    color: #fff;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Erweiterte Account-Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.login-note {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.status-details {
    margin-top: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.status-item .label {
    font-weight: 500;
    color: #6e6e73;
}

.message-count {
    background-color: #ff3b30;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.message-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
}

.message-item.unread {
    background-color: #e3f2fd;
    border-color: #0071e3;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.message-title {
    font-weight: 600;
    font-size: 16px;
}

.message-date {
    color: #6e6e73;
    font-size: 14px;
}

.message-content {
    line-height: 1.5;
}

.notification-setting {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.apple-button.danger {
    background-color: #ff3b30;
    color: white;
}

.apple-button.danger:hover {
    background-color: #d70015;
}

.course-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.course-status {
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
}

.course-status.active {
    background-color: #e5f6ea;
    color: #34c759;
}

.course-status.completed {
    background-color: #f2f2f7;
    color: #8e8e93;
}

.course-status.upcoming {
    background-color: #fff8e6;
    color: #ff9500;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 500;
    margin-bottom: 2px;
}

.activity-time {
    font-size: 14px;
    color: #6e6e73;
}

/* Community Styles */
.community-posts {
    margin-top: 20px;
}

.community-post {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.post-meta {
    flex: 1;
}

.post-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.post-category.kurswunsch {
    background: #e3f2fd;
    color: #0071e3;
}

.post-category.feedback {
    background: #e8f5e9;
    color: #34c759;
}

.post-category.frage {
    background: #fff3e0;
    color: #ff9500;
}

.post-category.diskussion {
    background: #f3e5f5;
    color: #9c27b0;
}

.post-author {
    font-weight: 600;
    margin-bottom: 4px;
}

.post-date {
    font-size: 14px;
    color: #6e6e73;
}

.post-content {
    margin-bottom: 20px;
    line-height: 1.6;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vote-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 980px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.vote-btn:hover {
    background: #e8e8ed;
}

.vote-btn.active.upvote {
    background: #e3f2fd;
    color: #0071e3;
    border-color: #0071e3;
}

.vote-btn.active.downvote {
    background: #ffebee;
    color: #ff3b30;
    border-color: #ff3b30;
}

/* Verbesserte Preis-Darstellung */
.course-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.course-price-box .price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
    font-weight: 500;
}

.course-price-box .price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 5px 0;
}

.course-price-box .price-detail {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 5px;
}

/* Alternative: Minimalistischer Preis-Style */
.course-price-minimal {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.course-price-minimal .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.course-price-minimal .price-label {
    color: #666;
    font-size: 0.95rem;
}

.course-price-minimal .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.course-price-minimal .price-note {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
}

.vote-count {
    font-weight: 600;
}

.community-filter {
    margin-bottom: 20px;
}

.community-filter select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    width: 200px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .login-buttons {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 1024px) {

    .features,
    .method-grid,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .features,
    .method-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-10px);
    }

    .location-info {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MOBILE NAVIGATION - HAMBURGER MENU
   ======================================== */

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.main-nav.mobile-active {
    display: flex !important;
}

@media (max-width: 768px) {

    /* Show hamburger button */
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Hide main navigation by default on mobile */
    .main-nav {
        position: fixed;
        top: 44px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-bottom: 1px solid #d2d2d7;
        margin-left: 0;
        display: none;
        z-index: 998;
        max-height: calc(100vh - 44px);
        overflow-y: auto;
    }

    .main-nav a {
        margin: 0;
        padding: 15px 22px;
        font-size: 17px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.2s;
    }

    .main-nav a:hover {
        background-color: #f5f5f7;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    /* Adjust nav container */
    .nav-container {
        height: auto;
        min-height: 44px;
        padding: 8px 22px;
    }

    /* Logo adjustments */
    .logo {
        height: 32px;
    }

    /* Language selector mobile optimization */
    .language-selector {
        margin-right: 10px;
    }

    .language-toggle {
        padding: 6px 12px;
        font-size: 13px;
    }

    .language-toggle .lang-text {
        display: none;
    }

    .language-toggle .flag-icon {
        font-size: 20px;
    }

    .language-toggle .dropdown-arrow {
        font-size: 8px;
        margin-left: -2px;
    }

    /* Account nav positioning */
    .account-nav {
        display: flex;
        align-items: center;
        margin-left: 0;
    }

    /* Top banner mobile */
    #top-banner {
        padding: 10px 15px;
        font-size: 13px;
        line-height: 1.4;
    }

    /* Hero section mobile */
    .hero {
        padding: 100px 0 80px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 36px;
    }

    p.hero-text {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    nav a {
        font-size: 16px;
        padding: 12px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .logo {
        height: 28px;
    }

    #top-banner {
        padding: 8px 12px;
        font-size: 12px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    p.hero-text {
        font-size: 19px;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .language-dropdown {
        right: -10px;
        min-width: 180px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
}

body.modal-open {
    overflow: hidden;
    /* Verhindert Scrollen der Hauptseite */
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 600px;
    box-shadow: var(--box-shadow);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: #1d1d1f;
    margin-bottom: 20px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.radio-group,
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.radio-group input,
.checkbox-group input {
    margin-right: 10px;
    margin-top: 3px;
}

.submit-button {
    width: 100%;
    margin-top: 20px;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-button.accept {
    background-color: #0071e3;
    color: white;
}

.cookie-button.settings,
.cookie-button.decline {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-link {
    color: #0071e3;
    text-decoration: none;
    transition: all 0.3s;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Cookie-Settings-Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
}

.cookie-settings-content {
    background-color: white;
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cookie-category {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: .4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

input:checked+.toggle-slider {
    background-color: #0071e3;
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.essential-note {
    font-size: 12px;
    color: #86868b;
    font-style: italic;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Verbessertes Styling für Konto-Verwaltung */
.logout-section {
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
    border: 1px solid #0071e3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.logout-section h4 {
    color: #0071e3;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.logout-section p {
    color: #666;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.account-actions .apple-button {
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 8px;
}

.danger-zone {
    border-top: 2px solid #dc3545;
    padding-top: 20px;
    margin-top: 30px;
}

.danger-zone h4 {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .logout-section {
        text-align: left;
    }
}

/* Hover-Effekte für Buttons */
.apple-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.apple-button.danger:hover {
    background-color: #c82333;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Status-Indikator */
.online-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Header Navigation Styling */
#accountNavigation {
    display: flex;
    align-items: center;
}

#loggedInNav {
    display: flex;
    align-items: center;
    gap: 15px;
}

#userEmailDisplay {
    font-size: 14px;
    opacity: 0.8;
    color: #1d1d1f;
}

#loggedInNav .apple-button {
    padding: 6px 12px;
    font-size: 12px;
    background-color: #6c757d;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

#loggedInNav .apple-button:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    #loggedInNav {
        flex-direction: column;
        gap: 10px;
    }

    #userEmailDisplay {
        font-size: 12px;
    }
}

/* Abmelde-Button Styling */
#loggedInControls .apple-button {
    background-color: #6c757d;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    border: none;
    transition: all 0.3s;
}

#loggedInControls .apple-button:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* User-Info Layout verbessern */
.user-info {
    text-align: right;
}

.user-info>div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .account-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .user-info {
        text-align: left;
        width: 100%;
    }

    .user-info>div {
        align-items: flex-start;
    }
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cv-card {
    background-color: #f5f5f7;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid #e0e0e0;
}

.cv-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 15px;
}

.cv-icon {
    font-size: 28px;
}

.cv-card h3 {
    margin: 0;
    font-size: 22px;
}

.cv-list {
    list-style: none;
    padding: 0;
}

.cv-list li {
    margin-bottom: 18px;
}

.cv-list strong {
    display: block;
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 4px;
}

.cv-list span {
    font-size: 16px;
}

.cv-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
}

.cv-list-skills {
    list-style: '✓  ';
    padding-left: 20px;
    margin: 0;
}

.cv-list-skills li {
    margin-bottom: 10px;
    font-size: 15px;
}

@media (max-width: 768px) {

    .cv-grid,
    .cv-skills-grid {
        grid-template-columns: 1fr;
    }
}

.time-highlight {
    font-weight: 600;
    color: #1d1d1f;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.price-unit strong {
    font-weight: 700;
    color: #667eea;
}

/* Transparente Preisgestaltung Sektion */
.pricing-transparency-section {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.transparency-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
}

.transparency-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(75, 108, 183, 0.3);
}

.transparency-header h3 {
    color: #1d1d1f;
    font-size: 32px;
    margin: 0;
}

.transparency-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lead-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1d1d1f;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 20px 0;
}

.example-item {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.example-item:hover::before {
    opacity: 1;
}

.example-item.highlighted {
    background: linear-gradient(135deg, rgba(75, 108, 183, 0.1) 0%, rgba(24, 40, 72, 0.05) 100%);
    border: 2px solid rgba(75, 108, 183, 0.3);
}

.example-item.highlighted::before {
    opacity: 1;
}

.example-icon {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.example-content h4 {
    font-size: 20px;
    color: #1d1d1f;
    margin-bottom: 12px;
    text-align: center;
}

.example-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: center;
}

.example-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.example-content ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #1d1d1f;
    text-align: center;
    position: relative;
}

.example-content ul li::before {
    content: '✓';
    color: #4b6cb7;
    font-weight: bold;
    margin-right: 8px;
}

.pricing-formula {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    border-radius: 16px;
    padding: 25px 35px;
    margin-top: 20px;
}

.formula-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.formula-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}

.formula-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-examples {
        grid-template-columns: 1fr;
    }

    .transparency-header h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .transparency-card {
        padding: 35px 25px;
    }

    .transparency-header {
        flex-direction: column;
        text-align: center;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .transparency-header h3 {
        font-size: 24px;
    }

    .lead-text {
        font-size: 16px;
    }

    .formula-box {
        flex-direction: column;
        gap: 10px;
    }

    .formula-text {
        font-size: 16px;
    }
}

/* Scroll Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

/* Automatic staggered delays for grids */
.features .feature:nth-child(2),
.courses-grid .course-card:nth-child(2),
.pricing-cards .pricing-card:nth-child(2),
.method-grid .method-card:nth-child(2) {
    transition-delay: 0.1s;
}

.features .feature:nth-child(3),
.courses-grid .course-card:nth-child(3),
.pricing-cards .pricing-card:nth-child(3),
.method-grid .method-card:nth-child(3) {
    transition-delay: 0.2s;
}

.courses-grid .course-card:nth-child(4) {
    transition-delay: 0.3s;
}

.courses-grid .course-card:nth-child(5) {
    transition-delay: 0.4s;
}

.courses-grid .course-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Sprach-Umschalter Styles */
.language-selector {
    position: relative;
    margin-right: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.language-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.language-toggle .flag-icon {
    font-size: 18px;
}

.language-toggle .lang-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.language-toggle .dropdown-arrow {
    font-size: 8px;
    transition: transform 0.3s;
}

.language-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1d1d1f;
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.language-option:hover {
    background-color: #f5f5f7;
}

.language-option.active {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: 600;
}

.language-option.active::before {
    content: '✓';
    font-weight: bold;
    margin-right: -8px;
}

.language-option .flag-icon {
    font-size: 20px;
}

.flag-icon {
    font-size: 20px;
}