/* ==========================================================================
   Service Regions Page – Reduced by 60%
   ========================================================================== */

.service-regions-page {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.service-regions-page .content-section {
    max-width: 520px;
    /* reduced */
    margin: 32px auto 16px;
    /* reduced */
}

.service-regions-page h1 {
    font-size: 18.5px;
    /* reduced */
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 12px;
    /* reduced */
}

.service-regions-page h2 {
    font-size: 15.5px;
    /* reduced */
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 12px;
    /* reduced */
}

/* Region Hero Section */
.region-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 520px;
    /* reduced */
    margin: 0 auto;
}

.region-image {
    width: 138px;
    /* reduced */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    /* reduced */
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-blurb {
    margin-left: 12px;
    /* reduced */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.region-blurb p {
    font-size: 12.8px;
    /* reduced */
    line-height: 1.5;
    color: #333;
    margin: 0 0 12px;
    /* reduced */
}

.region-blurb .button-group {
    display: flex;
    gap: 9px;
    /* reduced */
}

.region-blurb .schedule-btn,
.region-blurb .phone-btn {
    display: inline-block;
    width: 125px;
    /* reduced */
    padding: 7px 11px;
    /* reduced */
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    /* reduced */
    font-weight: bold;
    font-size: 12.5px;
    /* reduced */
    transition: background-color 0.3s ease;
    text-align: center;
}

.region-blurb .schedule-btn:hover,
.region-blurb .phone-btn:hover {
    background-color: #1a3c5e;
}

/* Steps Section */
.steps-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    /* reduced */
    gap: 8px;
    /* reduced */
    padding: 0;
}

.steps-list li {
    background-color: rgba(244, 244, 244, 0.8);
    padding: 9px;
    /* reduced */
    border-radius: 7px;
    /* reduced */
    transition: background-color 0.3s ease;
}

.steps-list li:hover {
    background-color: rgba(220, 220, 220, 1);
}

.steps-list img {
    width: 32px;
    /* reduced */
    height: 32px;
    /* reduced */
    margin-bottom: 6px;
    /* reduced */
}

.steps-list strong {
    display: block;
    font-size: 13.5px;
    /* reduced */
    color: #2980b9;
    margin-bottom: 4px;
    /* reduced */
}

.steps-list p {
    font-size: 12px;
    /* reduced */
    color: #333;
    margin: 0;
}

/* FAQ Section */
.region-faq .faq-item {
    margin-bottom: 8px;
    /* reduced */
    text-align: left;
}

.region-faq .faq-question {
    cursor: pointer;
    font-weight: bold;
    color: #2980b9;
    padding: 8px;
    /* reduced */
    background-color: rgba(244, 244, 244, 0.8);
    border-radius: 7px;
    /* reduced */
}

.region-faq .faq-question .faq-bullet {
    margin-right: 8px;
}

.region-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 8px;
    /* reduced */
}

.region-faq .faq-answer p {
    margin: 8px 0;
    /* reduced */
    color: #333;
}

.region-faq .faq-item.active .faq-answer {
    padding: 8px;
}

.region-faq .button-group {
    display: flex;
    justify-content: center;
    gap: 9px;
    /* reduced */
    margin-top: 12px;
    /* reduced */
}

.region-faq .faq-schedule-btn,
.region-faq .phone-btn {
    display: inline-block;
    width: 125px;
    /* reduced */
    padding: 7px 11px;
    /* reduced */
    background-color: #2980b9;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    /* reduced */
    font-weight: bold;
    font-size: 12.5px;
    /* reduced */
    transition: background-color 0.3s ease;
    text-align: center;
}

.region-faq .faq-schedule-btn:hover,
.region-faq .phone-btn:hover {
    background-color: #1a3c5e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-regions-page {
        padding: 12px;
        /* reduced */
    }

    .region-container {
        flex-direction: column;
    }

    .region-image {
        width: 100%;
        max-width: 520px;
        height: 120px;
        /* reduced */
        margin-bottom: 12px;
        border-radius: 7px;
    }

    .region-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 7px;
    }

    .region-blurb {
        margin-left: 0;
    }

    .region-blurb .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .region-blurb .schedule-btn,
    .region-blurb .phone-btn {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .region-faq .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .region-faq .faq-schedule-btn,
    .region-faq .phone-btn {
        width: 100%;
        max-width: 180px;
    }
}