body {
    background-color: #0F192C;
    background-image: url('images/training/training-back.webp');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    color: #fff;
}

/* training.css - Обновленные стили для страницы обучения */

.training-page {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    color: #fff;
    position: relative; /* Для позиционирования потенциальных фоновых элементов */
    overflow: hidden; /* Обрезка выходящих за рамки элементов */
}

.training-page__title {
    font-size: 56px; /* Увеличено */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.training-page__title--gradient {
    background: linear-gradient(90deg, #A0DFFC 0%, #B98FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.training-page__subtitle {
    font-size: 26px; /* Увеличено */
    font-weight: 300;
    margin-bottom: 60px; /* Увеличено */
    max-width: 900px; /* Увеличено */
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0; /* Немного светлее */
}

/* Общий стиль для информационных блоков */
.course-info-wrapper {
    background: rgba(255, 255, 255, 0.08); /* Чуть темнее фон */
    border: 1px solid rgba(255, 255, 255, 0.25); /* Чуть заметнее рамка */
    backdrop-filter: blur(15px); /* Усиленное размытие */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px; /* Более скругленные углы */
    padding: 50px; /* Увеличенный отступ */
    color: #fff;
    text-align: left;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); /* Легкая тень */
    animation: fadeIn 1s ease-out; /* Анимация появления */
}

.course-intro {
    font-size: 24px; /* Увеличено */
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500; /* Полужирный */
}

.course-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Увеличенный отступ между колонками */
    margin-bottom: 50px; /* Увеличенный отступ */
}

.course-details-grid h3 {
    font-size: 28px; /* Увеличено */
    font-weight: 700; /* Более жирный */
    color: #A0DFFC; /* Цвет акцента */
    margin-top: 0;
    margin-bottom: 25px; /* Увеличенный отступ */
    position: relative;
    padding-left: 40px; /* Отступ для иконки */
}

.course-details-grid h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px; /* Размер иконки */
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
}

.course-what-you-get h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A0DFFC"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>'); }
.course-key-dates h3::before { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A0DFFC"><path d="M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-1V1h-2zm3 18H5V8h14v11z"/></svg>'); }


.course-details-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-details-grid li {
    font-size: 19px; /* Увеличено */
    line-height: 1.7;
    margin-bottom: 15px; /* Увеличено */
    padding-left: 35px; /* Отступ для иконки */
    position: relative;
}

.course-details-grid li strong {
    color: #A0DFFC; /* Акцент для важных слов */
}

.course-details-grid li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* Выравнивание */
    width: 18px; /* Размер иконки */
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B98FFF"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z"/></svg>'); /* Стрелка */
    background-size: contain;
    background-repeat: no-repeat;
}

.course-pricing {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 20px;
}

.course-pricing__value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;

}
.without-wrap {
    white-space: nowrap; /* Запрещает перенос строки */
}

.course-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.course-actions .btn {
    color: #fff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    max-width: 480px;
    width: 100%;
    box-sizing: border-box;
}

.course-actions .btn:hover {
    transform: translateY(-3px);
}

.training-card__btn--buy {
    background: linear-gradient(90deg, #FB4242 0%, #F6A753 100%);
}
.training-card__btn--buy:hover {
    box-shadow: 0 10px 20px rgba(251, 66, 66, 0.3);
}

.training-card__btn--contact {
    background: linear-gradient(90deg, #8073F3 0%, #6DEBE4 100%);
}
.training-card__btn--contact:hover {
    box-shadow: 0 10px 20px rgba(128, 115, 243, 0.3);
}

/* Адаптивность */
@media (max-width: 991px) {
    .training-page__title {
        font-size: 48px;
    }
    .training-page__subtitle {
        font-size: 22px;
        margin-bottom: 50px;
    }
    .course-info-wrapper {
        padding: 40px;
    }
    .course-intro {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .course-details-grid {
        gap: 40px;
    }
    .course-details-grid h3 {
        font-size: 24px;
    }
    .course-details-grid li {
        font-size: 18px;
    }
    .course-pricing__value {
        font-size: 32px;
    }
    .course-pricing .btn {
        font-size: 18px;
        padding: 16px 25px;
    }
}

@media (max-width: 767px) {
    .training-page {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .training-page__title {
        font-size: 38px;
    }
    .training-page__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .course-info-wrapper {
        padding: 25px;
        border-radius: 20px;
    }
    .course-intro {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .course-details-grid {
        grid-template-columns: 1fr; /* В одну колонку на мобильных */
        gap: 30px;
        margin-bottom: 30px;
    }
    .course-details-grid h3 {
        font-size: 22px;
        padding-left: 35px;
    }
    .course-details-grid h3::before {
        width: 25px;
        height: 25px;
    }
    .course-details-grid li {
        font-size: 16px;
        padding-left: 30px;
        margin-bottom: 10px;
    }
    .course-details-grid li::before {
        width: 16px;
        height: 16px;
        top: 6px;
    }
    .course-pricing {
        padding-top: 30px;
    }
    .course-pricing__value {
        font-size: 28px;
        margin-bottom: 20px;

    }
    .course-pricing .btn {
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 30px;
    }
}