.offers__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.offers__img {
    height: 140px;
}

.offers__card {
    background: #fff;
    border: 1.5px solid rgba(5, 19, 75, .15);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: .3s ease;
    cursor: pointer;
}

.offers__text {
    font-size: 19px;
    color: #05134b;
    text-align: center;
    line-height: 1.3;
}

.benefits {
    position: relative;
    margin-top: 100px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;

    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;
    background-repeat: no-repeat;
}

.benefits__overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 46, 125, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits__container {
    max-width: 900px;
    width: 100%;
    color: #fff;
    text-align: left;
}

.benefits__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 15px;
}

.benefits__list li {
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
}

.benefits__list li::before {
    content: "▢";
    position: absolute;
    left: 0;
    color: #ffffff;
}


.participate-in-the-program-div {
    background-color: rgb(221, 224, 255);
    border-radius: 10px;
    width: 20%;
    height: 25vh;
    box-shadow: 1px 1px 10px 1px rgba(187, 187, 187, 0.509);
}

.features-section {
    background: linear-gradient(rgba(10, 30, 80, 0.8), rgba(10, 30, 80, 0.8)),
        url('https://img.freepik.com/premium-photo/group-people-with-large-group-people-background_960396-613920.jpg?w=360') center/cover no-repeat;
    padding: 80px 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    display: grid;
    /* Создаем 3 колонки равной ширины */
    grid-template-columns: repeat(3, 1fr);
    /* Расстояние между колонками и строками */
    gap: 40px;
    /* Это выровняет содержимое всех ячеек по верхней границе */
    align-items: start;
}