/* Stile für karriereberatung.html */

body {
    background-color: #1e1b2e;
    color: #f4f4f4;
}

.main-kb {
    margin-top: 100px; /* Höhe des Headers */
    padding-bottom: 3rem;
    width: 100%;
}

.section-kb {
    padding: 2rem 0;
}

.container-kb {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-kb {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #231f39;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.hero-kb h1 {
    font-size: 2.8rem;
    color: #ff914d;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subtitle-kb {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.intro-kb {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.intro-kb h2 {
    font-size: 2rem;
    color: #f4f4f4;
    margin-bottom: 1rem;
}

.intro-kb p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
}

.intro-kb strong {
    color: #ff914d;
    font-weight: 600;
}

.packages-title-kb {
    text-align: center;
    color: #ff914d;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 500;
}

.package-grid-kb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Sorgt dafür, dass alle Karten die gleiche Höhe haben */
}

.package-card-kb {
    background: rgba(94, 114, 228, 0.2);
    border: 2px solid rgba(94, 114, 228, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.package-card-kb:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(94, 114, 228, 0.3);
    border-color: #5e72e4;
}

/* Orange card versions */
.orange-cards .package-card-kb {
    background: rgba(255, 145, 77, 0.2) !important;
    border: 2px solid rgba(255, 145, 77, 0.3) !important;
}

.orange-cards .package-card-kb:hover {
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.3) !important;
    border-color: #ff914d !important;
}

.orange-details {
    border-color: rgba(255, 145, 77, 0.3) !important;
}

.package-card-kb.active {
    border-color: #ff914d;
    transform: translateY(-8px);
    box-shadow: 0 0 15px rgba(255, 145, 77, 0.4);
}

.package-card-kb .name-kb {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff914d;
    margin-bottom: 0.5rem;
}

.package-card-kb .cta-kb {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff914d;
    margin-bottom: 1rem;
    background: rgba(255, 145, 77, 0.15);
    padding: 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 145, 77, 0.3);
    text-align: center;
}

.package-card-kb .target-kb {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-card-kb .features-kb {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-kb li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: #f4f4f4;
}

.features-kb li i {
    color: #ff914d;
    margin-right: 12px;
    margin-top: 5px;
}

.package-details-kb {
    margin-top: 3rem;
}

.info-note {
    background: rgba(94, 114, 228, 0.15);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(94, 114, 228, 0.3);
    margin: 0 auto 1.5rem;
    max-width: 800px;
    font-size: 1.1rem;
    color: #f4f4f4;
}

.package-details-kb {
    background: #231f39;
    padding: 2.5rem;
    border-radius: 12px;
    min-height: 150px;
    transition: all 0.3s ease;
}

.package-details-kb .placeholder-kb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
    font-size: 1.1rem;
}

.package-details-kb h3 {
    font-size: 1.8rem;
    color: #ff914d;
    margin-bottom: 1rem;
}

.package-details-kb p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.package-details-kb table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.package-details-kb th, .package-details-kb td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #3a345e;
}

.package-details-kb th {
    color: #f4f4f4;
    font-weight: 600;
}

.package-details-kb td {
    color: #ccc;
}

.package-details-kb td.check-kb {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff914d;
    text-align: center;
    font-size: 1.2rem;
}

/* CTA Button Style */
.cta-button-kb {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff914d 0%, #ff7e2e 100%);
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 145, 77, 0.2);
}

.cta-button-kb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 145, 77, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
    .main-kb {
        margin-top: 70px;
    }
    .hero-kb h1 {
        font-size: 2.2rem;
    }
    .subtitle-kb {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .package-grid-kb {
        grid-template-columns: 1fr;
    }
}
