/* ====================== BERATUNG STYLES ====================== */

/* Grundlegendes Layout */
.page-content {
    padding-top: 120px;
    min-height: 80vh;
}

.header-container {
    padding-left: 0;
}

.logo {
    margin-left: -10px;
}

.section-title {
    margin-bottom: 40px;
    color: #022B3B;
    font-size: 2.2rem;
    font-weight: 600;
}

/* Content-Bereich */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.content-main {
    flex: 1;
    min-width: 280px;
}

.content-sidebar {
    flex: 0 0 350px;
}

.content-subtitle {
    color: #022B3B;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-subheading {
    color: #022B3B;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.text-content {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
}

.text-content:last-of-type {
    margin-bottom: 30px;
}

.text-emphasis {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.text-conclusion {
    font-weight: 500;
    color: #022B3B;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Listen */
.content-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.content-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.content-checklist {
    list-style-type: none;
    margin-bottom: 30px;
}

.content-checklist li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.check-icon {
    color: #022B3B;
    margin-right: 10px;
    font-weight: bold;
}

/* Kontaktbox */
.contact-box {
    background-color: #f5f5f7;
    padding: 30px;
    border-radius: 10px;
    position: sticky;
    top: 120px;
}

.contact-box-title {
    color: #022B3B;
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.contact-details {
    text-align: center;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-name {
    font-size: 1.1rem;
    color: #022B3B;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-position {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 16px;
    margin-right: 8px;
}

.contact-link {
    text-decoration: none;
    color: #022B3B;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0f4e6b;
}

/* Footer-Anpassungen */
.icon-link {
    color: whitesmoke;
}

/* Media Queries für Responsivität */
@media (max-width: 1100px) {
    .content-sidebar {
        flex: 0 0 320px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-main {
        width: 100%;
    }
    
    .content-sidebar {
        width: 100%;
        flex: 0 0 100%;
        margin-top: 20px;
    }
    
    .contact-box {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 100px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
    }
    
    .content-subheading {
        font-size: 1.2rem;
    }
    
    .text-content, 
    .content-list li, 
    .content-checklist li {
        font-size: 0.95rem;
    }
    
    .text-emphasis {
        font-size: 1rem;
    }
    
    .text-conclusion {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-content {
        padding-top: 90px;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .contact-box {
        padding: 25px 20px;
    }
    
    .contact-link {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .content-subtitle {
        font-size: 1.3rem;
    }
    
    .content-subheading {
        font-size: 1.1rem;
    }
}
