/* BoB-Seite spezifische Styles - Füge dies zu deiner styles.css hinzu */

/* Page Header (falls nicht schon vorhanden) */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

/* Content Section */
.content-section {
    margin-bottom: 3rem;
}

/* Info Boxes */
.info-box {
    background: #f8fafc;
    border-left: 5px solid #1e3a8a;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.info-box i {
    font-size: 2.5rem;
    color: #1e3a8a;
    flex-shrink: 0;
}

.info-box h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-box p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box-primary {
    background: #eff6ff;
    border-left-color: #1e3a8a;
}

.info-box-success {
    background: #f0fdf4;
    border-left-color: #22c55e;
}

.info-box-success i {
    color: #22c55e;
}

.info-box-success h3 {
    color: #22c55e;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #1e3a8a;
}

.highlight-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    border-color: transparent;
}

.highlight-card h3,
.highlight-card p,
.highlight-card a {
    color: white;
}

.highlight-card .card-icon i {
    color: white;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: #1e3a8a;
}

.highlight-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.highlight-card h3 {
    color: white;
}

.berater-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #1e3a8a;
}

.berater-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.berater-title {
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.highlight-card .contact-details p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-details i {
    color: #1e3a8a;
    width: 20px;
    flex-shrink: 0;
}

.highlight-card .contact-details i {
    color: rgba(255, 255, 255, 0.9);
}

.contact-details a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #22c55e;
    text-decoration: underline;
}

.highlight-card .contact-details a {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-card .contact-details a:hover {
    border-bottom-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .info-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .info-box i {
        font-size: 2rem;
    }

    .info-box h3 {
        font-size: 1.3rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 2rem;
    }
}
