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

.simple-cards-section .title-section__titre * {
    color: var(--color-primary);
    font-family: var(--font-heading);
    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-section__titre * {
        font-size: 32px;
        line-height: 1.2;
    }
}

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

.simple-cards-section__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 32px;
    margin-top: 32px;
}

.simple-cards-section__card {
    background-color: var(--color-white);
    padding: clamp(24px, 4vw, 32px);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.simple-cards-section__card-icon {
    margin-bottom: 16px;
    color: var(--color-primary);
    line-height: 0;
}

.simple-cards-section__card-icon svg {
    width: var(--icon-size);
    height: var(--icon-size);
    display: block;
}

.simple-cards-section__card-title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.simple-cards-section__card-title:last-child {
    margin-bottom: 0;
}

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

.simple-cards-section__card-copy * {
    text-align: center;
    color: #000;
    font-family: var(--font-heading-light);
    line-height: 1.4;
}

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