/* Zusätzliches CSS für die Jahrestrainings-Seite */

/* ===== HERO SECTION ===== */
#hero {
    background: linear-gradient(rgba(16, 32, 79, 0.4), rgba(16, 32, 79, 0.4)), url('../img/jahrestrainings-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #FFF;
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    margin-bottom: 10px;
}

.hero-content h2 {
    color: #FFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* Intro-Sektion Styling */
.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.intro-column {
    flex: 1;
    min-width: 300px;
}

.intro-column h3 {
    color: #10204F;
    margin-bottom: 15px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.intro-column h3 i {
    color: #C00418;
    margin-right: 10px;
}

.intro-column p {
    line-height: 1.6;
}

.intro-quote {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    margin-top: 40px;
}

.intro-quote blockquote {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.intro-quote blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #C00418;
    border-radius: 2px;
}

.quote-author {
    font-weight: 600;
    text-align: right;
}

/* Benefits Section Styling */
.bg-light {
    background-color: #f8f8f8;
}

.bg-dark {
    background-color: #10204F;
    color: #fff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.benefit-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    color: #C00418;
    font-size: 2rem;
    margin-bottom: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(192, 4, 24, 0.1);
    border-radius: 50%;
}

/* Jahrestrainings-Übersicht Styling */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    line-height: 1.7;
}

.card-price {
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-label {
    font-weight: 600;
    color: #10204F;
    margin-right: 10px;
}

.price-amount {
    color: #C00418;
    font-weight: 500;
}

/* FAQ Styling */
.faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #10204F;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    color: #C00418;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    content: '−';
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
}

.faq-answer.active {
    padding: 15px;
    max-height: 500px; /* Adjust as needed */
    padding-top: 0;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .intro-columns {
        flex-direction: column;
    }
    
    .benefit-card {
        flex: 0 0 100%;
    }
    
    .quote-author {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .intro-quote {
        padding: 20px;
    }
    
    .intro-quote blockquote {
        font-size: 1rem;
    }
    
    .card-price {
        display: flex;
        flex-direction: column;
    }
    
    .price-label {
        margin-bottom: 5px;
    }
}