.section-2 {
    width: 100%;
    background: #094047;
    background: linear-gradient(
        180deg,
        rgba(9, 64, 71, 1) 0%,
        rgba(137, 193, 199, 1) 55%,
        rgba(255, 255, 255, 1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    color: white;
}

.how-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.how-section-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #a3ef6b;
    color: #000;
    padding: 18px 20px;
    border-radius: 16px;
    min-height: 100px;
    box-sizing: border-box;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.how-section-item .icon {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-section-item .icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.how-section-item .text {
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 991px) {
    .how-section {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (max-width: 640px) {
    .how-section {
        grid-template-columns: 1fr;
    }

    .how-section-item {
        padding: 16px;
    }
}
.how-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    margin-top: 70px;
    margin-bottom: 70px;
}
