/* ============ СТРАНИЦА С КОНТЕНТОМ ============ */

/* Секции контента */
.content-section {
    padding: 3rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Все секции кроме главной имеют белый фон */
.content-section:not(.home-section) {
    background-color: #fff;
}

.content-section:first-of-type {
    padding-top: 0;
}

.content-section:last-of-type {
    padding-bottom: 5rem;
}

/* ЗАГОЛОВКИ РАЗДЕЛОВ (<h2>) - БЕЗ ПОДЧЕРКИВАНИЯ */
.content-section h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Для центрированных заголовков */
.text-center h2 {
    text-align: center;
}

/* Активный раздел в меню */
.nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-left-color: #ffffff !important;
}