.checklist-section__title-div {
    text-align: center;
}

.checklist-section__title {
    margin-bottom: 16px;
}

.checklist-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;
}

.checklist-section__copy {
    text-align: center;
}

.checklist-section__card-cta {
    margin-top: 32px;
}

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

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

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

.checklist-section__card {
        background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 16px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    -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;
}

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

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

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

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

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

.checklist-section__card-checklist {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checklist-section__card-checklist-item {
    display: flex;
    align-items: flex-start;
    border: 1px solid #12112724;
    border-radius: 12px;
    padding: 12px;
    gap: 8px;
}

.checklist-section__card-check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    color: #1700FF;
    margin-top: 2px;
}

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