.pulseSection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /*margin-bottom: -25%;*/
    .gi {
        margin-top: 50px;
        max-width: 330px;
        max-height: 65px;
        white-space: nowrap;
        text-align: center;
    }

    /* Убираем ограничение ширины для экранов меньше md (768px) */
    @media (max-width: 767px) {
        .gi {
            max-width: none;
        }
    }


    h2 {

        /* Desctop/H3 */
        font-family: 'Onest';
        font-style: normal;
        font-weight: 600;
        font-size: 50px;
        line-height: 115%;
        /* or 57px */

        /* Txt/Dark blu */
        color: #152572;


    }
    .accordion-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 50px 40px 50px;


        /* Desctop/H7 */
        font-family: 'Onest';
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 120%;

        color: #152572;

    }
    .accordion {
        display: flex; /* Устанавливаем flex-контейнер */
        flex-direction: column; /* Размещаем элементы по вертикали */
        gap: 1rem; /* Настраиваем расстояние между элементами */
    }
    /* Адаптивные стили */
    @media (max-width: 576px) {
        h2 {
            font-size: 1.5rem;
            text-align: center;
        }

        .accordion-button {
            font-size: 0.9rem;
            padding: 0.75rem;
        }

        .accordion-body {
            font-size: 0.9rem;


            /* Desctop/Text 1 */
            font-family: 'Onest';
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 20px;

            /* Txt/Dark blu */
            color: #152572;

        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 1rem;
        }

        .accordion-button {
            font-size: 1rem;
            padding: 1rem;
        }
    }


}