/* Services Support Section Styles */
.services-support-section {
    margin: 0 auto;
    padding: 0 120px;
}

.services-support-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: #ffffff;
    padding: 24px 40px;
}

.support-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.support-title {
    font-family: 'IvyOra Display', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    color: #403936;
    margin: 0 0 8px;
    line-height: normal;
}

.support-title em,
.support-title-italic,
.support-title-rest {
    font-weight: 500;
    font-style: italic;
}

.support-description {
    font-family: 'IBM Plex Sans', sans-serif;
    color: #403936;
    font-size: 16px;
    line-height: normal;
    max-width: 900px;
}

.support-description p {
    margin: 0;
}

.support-cards {
    display: flex;
    gap: 24px;
}

.support-card {
    flex: 1 1 0;
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 21px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 0;
}

.support-card-orange {
    border: 1px solid #ed6a59;
}

.support-card-green {
    border: 1px solid #005b68;
}

.support-card-title {
    color: #ed6a59;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
}

.support-card-title-teal {
    color: #005b68;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 12px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    color: #403936;
    font-size: 16px;
}

.support-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    /* space for custom bullet */
    position: relative;
    line-height: normal;
}

/* Custom circular bullets that match card accent color (from Figma) */
.support-list li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #403936;
    /* default (green) */
}

/* Orange variant for the left card */
.support-card-orange .support-list li::before {
    background: #403936;
}

/* Green variant for the right card (explicit) */
.support-card-green .support-list li::before {
    background: #403936;
}

/* Responsive: stack cards below 1200px */
@media (max-width: 1200px) {
    .services-support-section {
        padding: 0 60px;
    }

    .services-support-container {
        gap: 40px;
        padding: 24px 32px;
    }

    .support-title {
        font-size: 24px;
        text-align: center;
    }

    .support-intro {
        text-align: center;
    }

    .support-cards {
        flex-direction: column;
        gap: 24px;
    }

    .support-card {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .services-support-section {
        padding: 0 24px;
    }

    .services-support-container {
        padding: 24px 16px;
    }

    .support-title {
        font-size: 24px;
        text-align: left;
    }

    .support-description {
        font-size: 64px;
        text-align: left;
    }

    .support-card-title {
        color: #ed6a59;
        font-family: 'IBM Plex Sans', 'sans-serif';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .support-list {
        font-size: 16px;
    }
}
