/* =========================================
   Coway USA Service Areas
========================================= */

.coway-service-areas {
    background: #f7f9fb;
    padding: 60px 20px;
}

.coway-service-inner {
    max-width: 1100px;
    margin: 0 auto;
}


/* Main Title */
.coway-service-areas h2 {
    margin: 0 0 25px;
    text-align: center;
    color: #1b2529;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.35;
}


/* Description */
.coway-service-description {
    max-width: 920px;
    margin: 0 auto 40px;
    text-align: center;
}

    .coway-service-description p {
        margin: 0 0 16px;
        color: #555;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.8;
    }

        .coway-service-description p:last-child {
            margin-bottom: 0;
        }


/* Service Area Subheading */
.coway-service-areas h3 {
    margin: 0 0 30px;
    text-align: center;
    color: #1b2529;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}


/* Region Grid */
.coway-region-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
}


/* Region Group Title */
.coway-region-group h4 {
    margin: 0 0 12px;
    color: #1b2529;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}


/* Region Links */
.coway-region-group a {
    display: block;
    color: #555;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    text-decoration: none;
    transition: color 0.2s ease;
}


    /* Clear hover / focus effect */
    .coway-region-group a:hover,
    .coway-region-group a:focus {
        color: #008bd2;
        text-decoration: underline;
    }


/* Areas without a separate page */
.coway-region-group span {
    display: block;
    color: #555;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .coway-region-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

    .coway-service-areas {
        padding: 45px 20px;
    }

        .coway-service-areas h2 {
            font-size: 25px;
            margin-bottom: 22px;
        }

    .coway-service-description {
        text-align: left;
        margin-bottom: 34px;
    }

        .coway-service-description p {
            font-size: 15px;
            line-height: 1.75;
        }

    .coway-service-areas h3 {
        text-align: left;
        font-size: 19px;
        margin-bottom: 23px;
    }

    .coway-region-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .coway-region-group h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .coway-region-group a,
    .coway-region-group span {
        font-size: 14px;
        line-height: 1.9;
    }
}
