    .You-will-receive {
        margin-top: 10px;
        background-image: url(https://thumbs.dreamstime.com/b/volunteer-entering-data-desktop-computer-sharp-focus-hands-typing-background-remains-softly-blurred-432563394.jpg);
        background-size: cover;
        background-position: center;
        height: 70vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        position: relative;
        z-index: 1;
    }

    .You-will-receive-div-p {
        color: #ffffff;
        font-size: 18px;
        font-weight: normal;
        margin-bottom: 20px;
        margin-top: 20px;
        text-align: start;
    }






    .What-participate-program {
        margin-top: 100px;

    }

    .What-participate-program-vernagir-h3 {
        color: #03114a;
        font-size: 30px;
        font-weight: bolder;
        margin-bottom: 20px;
        margin-top: 20px;
        text-align: center;

    }



    .participate-in-the-program-block {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin-top: 50px;
    }

    .participate-in-the-program-div {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-color: rgb(221, 224, 255);
        border-radius: 10px;
        width: 17%;
        height: 45vh;
        box-shadow: 1px 1px 10px 1px rgba(187, 187, 187, 0.509);
    }

    .participate-in-the-program-div-h3-div {
        width: 90%;
        height: 45%;
    }

    .participate-in-the-program-div-img-div {
        width: 90%;
        height: 20%;
        /* background-color: #ffffff; */
        display: flex;
        justify-content: end;
        align-items: center;
        border-radius: 10px;
    }


    /* Стили для карточки */
    .program-card {
        margin-top: 40px;
        background-color: #0b1f3f;
        color: #ffffff;
        padding: 40px;

        max-width: 700px;
        box-sizing: border-box;
    }


    .program-title {
        font-size: 22px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    /* Стили списка */
    .program-list {
        list-style: none;
        /* Убираем стандартные маркеры */
        padding: 0;
        margin: 0 0 40px 0;
    }

    .program-list li {
        position: relative;
        padding-left: 25px;
        /* Отступ для текста от квадратика */
        margin-bottom: 15px;
        font-size: 16px;
        line-height: 1.5;
        display: flex;
        align-items: flex-start;
    }

    /* Создаем квадратные маркеры (буллиты) */
    .program-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        /* Выравнивание квадратика по высоте текста */
        width: 10px;
        height: 10px;
        background-color: #ffffff;
        /* Белый цвет квадратика */
        border-radius: 1px;
    }

    /* Стили желтой кнопки */
    .program-btn {
        background-color: #ffc20e;
        /* Желтый цвет как на скрине */
        color: #05134b;
        font-size: 16px;
        font-weight: 700;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        /* Полное скругление (форма таблетки) */
        cursor: pointer;
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 6px rgba(5, 19, 75, 0.1);
    }

    .program-btn:hover {
        background-color: #e0aa00;
        /* Эффект при наведении */
    }

    /* Адаптивность для мобильных */
    @media (max-width: 600px) {
        .program-card {
            padding: 25px;
        }

        .program-title {
            font-size: 18px;
        }

        .program-list li {
            font-size: 14px;
        }
    }



    .program-car {
        background-color: #0b1f3f;
        /* Темно-синий цвет фона */
        color: #ffffff;
        padding: 40px;
        border-radius: 8px;
        /* Слегка скругленные углы карточки */

        /* Шрифт без засечек */
        max-width: 700px;
        /* Ограничение ширины, можно убрать при необходимости */
        box-sizing: border-box;
    }


    .courses-section {
        width: 100%;
        padding: 80px 0;
        background: #ffffff;
    }

    .courses-title {
        text-align: center;
        font-size: 36px;
        font-weight: 500;
        margin-bottom: 60px;
    }

    .courses-cards {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .course-card {
        width: 520px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(5, 19, 75, 0.08);
        border-radius: 6px;
        overflow: hidden;
    }

    .course-image {
        position: relative;
        height: 200px;
    }

    .course-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .course-image-title {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 26px;
        font-weight: 600;
        color: #1e2a5a;
    }

    .course-image-title.yellow {
        color: #ffc400;
        top: 20px;
        bottom: auto;
    }

    .course-image-subtitle {
        position: absolute;
        top: 60px;
        left: 20px;
        font-size: 18px;
        font-weight: 500;
        color: #1e2a5a;
        line-height: 1.3;
    }

    .course-list {
        padding: 25px 30px 35px;
        list-style: none;
    }

    .course-list li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
    }


    .guarantee {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .guarantee__header {
        margin-top: 100px;
        width: 100%;
    }

    .guarantee__title {
        color: #05134b;
        font-size: 30px;
        flex-wrap: wrap;
        font-weight: bold;
        text-align: center;
    }

    .guarantee__cta {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px
    }

    .guarantee__link {
        padding: 10px;
        border-radius: 10px;
        background-color: #ffcb14;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;


    }

    /* SECTION */
    .pricing-section {
        width: 100%;
        padding: 80px 0;
        background: #ffffff;
    }

    /* CONTAINER */
    .pricing-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* CARD */
    .pricing-card {
        background: #fff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 10px 30px rgba(5, 19, 75, 0.06);
        display: flex;
        flex-direction: column;
    }

    /* HEADER */
    .pricing-header {
        font-size: 20px;
        background: #061a52;
        color: #fff;
        padding: 40px 20px;
        border-radius: 8px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
    }

    /* PRICE */
    .pricing-price {
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 24px;
    }

    /* LIST */
    .pricing-list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px 0;
    }

    .pricing-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 14px;
        line-height: 1.5;
        font-size: 15px;
    }

    /* CHECK ICON */
    .pricing-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #05134b;
        font-weight: 700;
    }

    /* BUTTON */
    .pricing-btn {
        margin-top: auto;
        background: #f7c600;
        border: none;
        border-radius: 24px;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .pricing-btn:hover {
        background: #e5b500;
    }


    @media (max-width: 900px) {
        .pricing-container {
            grid-template-columns: 1fr;
        }
    }

    .go-banner {
        background-color: none;
    }

    .go-banner {
        background-color: none;
    }

    .go-banner {
        background-color: rgba(255, 255, 255, 0);
    }

    .go-banner-h5-3 {
        color: #061a52;

    }

    .href {
        margin-top: 300px;
        margin-bottom: 20px;
        display: flex;
        gap: 100px;
        justify-content: center;
        align-items: center
    }