/* ... Ваш существующий CSS ... */

/* Стилизация секции теоретического материала */
    .blue_link {
        color: blue;
        text-decoration: underline;
    }

#theoretical-material {
    background-color: white; /* Белый фон, имитирующий бумагу */
    padding: 40px;
    margin: 100px auto 50px auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#theoretical-material h2 {
    text-align: center;
    margin-bottom: 30px;
}

.material-section {
    margin-bottom: 30px;
}

.material-section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.material-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.material-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.material-section ul li {
    margin-bottom: 8px;
}

/* Дополнительные стили для страницы */
#additional-resources {
    margin-top: 40px;
}

.resource-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.resource-buttons .action-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.resource-buttons .action-btn:hover {
    background-color: var(--accent-color);
}

/* ... Остальные ваши стили ... */
