/* Preise Hero */
.preise-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%), 
                url('preise-hero.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 7rem 2rem 5rem;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.preise-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.preise-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.preise-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(5px);
    margin-top: 1.5rem;
}

.hero-badge i {
    margin-right: 0.5rem;
}

/* Preise Navigation */
.preise-nav {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--accent-color);
}

.preise-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    white-space: nowrap;
}

.preise-nav li {
    margin: 0;
}

.preise-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s;
    display: block;
    position: relative;
    font-size: 0.95rem;
}

.preise-nav a:hover {
    color: var(--primary-color);
}

.preise-nav a.active {
    color: var(--primary-color);
}

.preise-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
}

/* Preise Sections */
.preise-section {
    padding: 4rem 0;
}

.preise-section.grau {
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 i {
    margin-right: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* Preis Karten */
.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.preis-karte {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.preis-karte:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.preis-karte.highlight {
    border: 2px solid var(--accent-color);
}

.preis-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.preis-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.preis-badge {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.preis-badge span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
}

.preis-merkmale {
    padding: 1.5rem;
    list-style: none;
}

.preis-merkmale li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.preis-merkmale li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.preis-hinweis {
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.preis-hinweis i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.preis-notiz {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Paket Vergleich */
.paket-vergleich {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.paket-option {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.paket-option:hover {
    transform: translateY(-5px);
}

.paket-option.highlight {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.paket-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.paket-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.paket-preis {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.paket-stunden {
    font-size: 1rem;
    color: var(--gray-dark);
}

.paket-eigenschaften {
    padding: 1.5rem;
    flex-grow: 1;
}

.paket-eigenschaften ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.paket-eigenschaften li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.paket-eigenschaften li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.ersparnis-badge {
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.paket-option a {
    margin: 1.5rem;
    margin-top: auto;
    text-align: center;
}

.paket-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.info-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
}

/* Schulungen Grid */
.schulungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.schulung-option {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.schulung-option:hover {
    transform: translateY(-5px);
}

.schulung-option.highlight {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.schulung-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.schulung-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.schulung-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.schulung-preis {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--text-color);
}

.schulung-preis span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-dark);
}

.schulung-merkmale {
    padding: 0 1.5rem 1.5rem;
    list-style: none;
}

.schulung-merkmale li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.schulung-merkmale li i {
    color: var(--success-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.schulung-cta {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

/* Zahlungsarten */
.zahlungsarten {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.zahlungsarten h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zahlungsarten h2 i {
    margin-right: 1rem;
}

.zahlungs-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.zahlungs-option {
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.zahlungs-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.zahlungs-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

.zahlungs-hinweis {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Preise CTA */
.preise-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.preise-cta .container {
    max-width: 800px;
}

.preise-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.preise-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Badges */
.empfehlungs-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.faq-section h2 i {
    margin-right: 1rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.faq-question h3 i {
    margin-left: 1rem;
    transition: transform 0.3s;
}

.faq-question.active h3 i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    background-color: var(--secondary-color);
    display: none;
}

.faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .preise-hero {
        padding: 5rem 2rem 3rem;
    }
    
    .preise-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .preise-nav ul {
        justify-content: flex-start;
    }
    
    .preise-nav a {
        padding: 1rem;
    }
    
    .preise-grid, .paket-vergleich, .schulungen-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .preise-cta h2 {
        font-size: 1.8rem;
    }
    
    .preise-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .preise-hero {
        padding: 4rem 1.5rem 2.5rem;
    }
    
    .preise-hero h1 {
        font-size: 1.8rem;
    }
    
    .preise-hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-box i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}