﻿.content-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 20px auto;
    height: auto; /* Для сохранения пропорций */
}

.content-image-large {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 20px auto;
    height: auto; /* Для сохранения пропорций */
}

.theory-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
}

    .theory-table th, .theory-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }

    .theory-table th {
        background-color: #f8f9fa;
        font-weight: bold;
    }

    .theory-table tbody tr:nth-child(even) {
        background-color: #f2f2f2;
    }

.call-to-action {
    background-color: #f8f9fa;
    border-left: 4px solid #0057B7;
    padding: 25px;
    margin: 40px 0;
    text-align: center;
}

.cta-button-container {
    margin-top: 20px;
}

/*.cta-button {
    display: inline-block;
    background-color: #0057B7;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #004a9e;
    }*/

.cta-button {
    display: inline-block;
    background-color: #0057B7; /* Основной синий цвет */
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.2s ease-out; /* Ускоряем переход, но делаем его более динамичным */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Начальная тень */
    transform: translateY(0); /* Начальное положение */
}

    .cta-button:hover {
        background-color: #004085; /* Чуть более тёмный синий для заметного изменения */
        transform: translateY(-3px); /* Кнопка поднимается на 3px */
        box-shadow: 0 8px 18px rgba(0,0,0,0.3); /* Тень становится глубже и шире */
    }
