body {
    background-image: url("../img/var.bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow-y: hidden; /* Скрываем общий скролл страницы */
}

/* Стили для кнопки "Назад" */
.back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 100;
}

.back-button-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: transparent; 
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-image: linear-gradient(45deg, #a66ef5, #ba23ac) 1;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button-link:hover {
    transform: scale(1.1);
    background-color: rgba(166, 110, 245, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: #ba23ac;
}

/* Стили для белого блока с контентом */
.section-container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 20px;
    width: 90%; /* Большая ширина */
    height: 85vh; /* Большая высота */
    max-width: 1500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto; /* Скролл только внутри блока */
}

.section-container h1 {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Стили для заголовка раздела */
.section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    color: #ba23ac; /* Пример: делаем его акцентного цвета */
    margin-bottom: 20px;
}

/* Стили для основного контента */
.section-content {
    /* Общие стили для всего контента */
    line-height: 1.6;
    font-size: 1.1em;
    padding: 0 20px; /* Дополнительные отступы по бокам */
    text-align: left;
}

.section-content p {
    margin-bottom: 1em;
}

.section-content table {
    width: 900px;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.section-content table th,
.section-content table td {
    border: 2px solid #ccc;
    padding: 10px;
    text-align: left;
}