

.simple-cards-section__title {
    margin-bottom: 16px;
}

.simple-cards-section__title * {
    color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 16px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 550px) {
    .simple-cards-section__title * {
        font-size: 32px;
        line-height: 1.2;
    }
}

.checklist-section__icon svg {
    height: 50px;
    width: auto;
}

.simple-cards-section__cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.simple-cards-section__card {
        background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 16px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
    box-shadow: 0 4px 20px rgba(23, 0, 255, 0.15);
    min-width: 410px;
}

.simple-cards-section__card__title-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simple-cards-section__card-icon {
    margin-bottom: 16px;
}

.simple-cards-section__card-title {
    color: #1700FF;
    font-family: "ClashDisplay-SemiBold";
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.simple-cards-section__card-copy {
    text-align: center;
    margin-bottom: 16px;
}

.simple-cards-section__card-copy * {
    text-align: center;
    color: #000;
    font-family: "ClashDisplay-Light";
    line-height: 1.4;
}

.simple-cards-section__disclaimer {
    margin-top: 16px;
}

@media (max-width: 550px) {
    .simple-cards-section__card {
        min-width: inherit;
        width: 100%;
    }
}