/* Общие стили для секций */
section {
    padding: 2rem;
}

h2, h3 {
    margin: 0 0 1rem 0;
}

h2 {
    font-size: 30px; /* Было 28px */
    font-weight: 800;
}

/* Ссылки с базовой анимацией */
main a {
    color: var(--color);
    text-decoration: none;
}

main a:hover {
    background: var(--color-dark);
}

.benefits a:hover {
    background: transparent;
    text-decoration: none;
}

/* Первая секция benefits */
.benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefits > div, 
.benefits > article {
    flex: 1 1 45%;
}

.become div {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.become a:hover {
    background: var(--color-dark);
}

@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
    }

    .benefits > div, 
    .benefits > article {
        flex: 1 1 100%;
    }
}

/* Артикл с фоном и скруглением */
.benefits article {
    background-color: var(--color);
    color: #fff;
    border-radius: 30px;
    padding: 2rem;
    font-size: 20px; /* Было 18px */
}

.benefits ul {
    list-style: none;
    font-size: 22px; /* Было 20px */
    padding-left: 0;
}

/* Вторая секция become */
.become {
    background-color: #f9f9f9;
    border-radius: 30px;
    margin-bottom: 30px;
}

.become ol {
    padding-left: 1.5rem;
    font-size: 18px; /* Добавлено (+2px к стандарту) */
}

.become table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 18px; /* Добавлено (+2px к стандарту) */
}

.become th, .become td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
}

.become caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 20px; /* Добавлено (+2px к стандарту) */
}

/* Ссылки внутри секции */
.become a {
    background: var(--color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 5px;
    font-size: 18px; /* Добавлено (+2px к стандарту) */
}

/* Третья секция last */
.last {
    background-color: #f5f5f5;
    border-radius: 30px;
    margin-bottom: 30px;
}

.last p {
    margin: 0.5rem 0;
    font-size: 18px; /* Добавлено (+2px к стандарту) */
}

/* Мобильная адаптивность для таблиц */
@media (max-width: 600px) {
    .become table, 
    .become thead, 
    .become tbody, 
    .become th, 
    .become td, 
    .become tr {
        display: block;
        width: 100%;
    }

    .become tr {
        margin-bottom: 1rem;
    }

    .become td {
        text-align: right;
        position: relative;
    }

    .become td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 0.5rem;
        font-weight: bold;
        text-align: left;
    }
}