.about-plans__tiles {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}


.about-plans__tile {
    width: calc(33.33% - 27px);
    background-color: #F7F7F7;
    padding: 24px;
    min-height: 344px;
    border-radius: 5px;
}

.about-plans__tile h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.about-plans__tile p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #335597;
}

.about-plans__tile-number {
    width: 60px;
    height: 60px;
    background: #B9E362;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
}

.about-plans__tile-number span {
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
}

@media screen and (max-width: 640px) {
    .about-plans__tiles {
        gap: 20px;
    }

    .about-plans__tile {
        width: 100%;
        padding: 24px 20px;
        min-height: auto;
    }

    .about-plans__tile p {
        font-size: 12px;
        line-height: 20px;
    }
}