.info-section {
    margin: 0 auto 2.5rem;
}

.section-card {
    background: #ffffff;
    border: 1px solid rgba(127, 77, 90, 0.12);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 16px 32px rgba(127, 77, 90, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.section-card--cta {
    text-align: center;
    border: 1px solid rgba(127, 77, 90, 0.18);
    background: linear-gradient(125deg, rgba(127, 77, 90, 0.1), rgba(255, 255, 255, 0.96));
}

.section-card--cta .section-heading {
    justify-content: center;
    text-align: center;
}

.section-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    background: rgba(127, 77, 90, 0.12);
    color: #7f4d5a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.section-card--cta .section-card__icon {
    align-self: center;
}

.section-card__callout {
    border-left: 4px solid #7f4d5a;
    background: rgba(127, 77, 90, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin: 0.65rem 0;
    color: rgba(34, 30, 31, 0.78);
}

.section-card__note {
    font-style: italic;
    color: rgba(34, 30, 31, 0.7);
}

.section-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.section-card__list--steps li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.6;
}

.section-card__list--steps li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 0.18rem;
    background: rgba(216, 169, 180, 1);
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.section-card__list--bullets {
    list-style: disc;
    margin-left: 1.1rem;
}

.section-card__list--bullets li {
    line-height: 1.6;
}

.info-link {
    color: #7f4d5a;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.12rem;
    text-underline-offset: 0.16rem;
}

.info-link:hover,
.info-link:focus {
    color: #633945;
}

.section-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding-inline: 1.35rem;
}

@media (min-width: 1200px) {
    .info-section {
        margin-bottom: 3rem;
    }
}

@media (min-width: 576px) {
    .section-card {
        padding: 1.9rem 1.85rem;
    }
}

@media (min-width: 768px) {
    .section-card {
        padding: 2rem 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-card,
    .section-card__callout {
        transition: none;
    }
}
