.rental-guide-section {
    background: #f2f9fd;
    padding: 55px 20px;
}

.rental-guide-box {
    max-width: 1180px;
    margin: 0 auto;
}

.rental-guide-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 35px;
    align-items: center;
}

.rental-guide-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: #e5f4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0783ca;
    font-size: 52px;
}

.rental-guide-content h2 {
    margin: 0 0 20px;
    color: #222;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
}

.rental-guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

    .rental-guide-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 10px;
        color: #555;
        font-size: 17px;
        line-height: 1.7;
    }

        .rental-guide-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 12px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #0783ca;
        }

.rental-guide-btn {
    display: inline-block;
    padding: 11px 24px;
    border: 1.5px solid #0783ca;
    border-radius: 25px;
    color: #0783ca;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

    .rental-guide-btn:hover {
        background: #0783ca;
        color: #fff;
        text-decoration: none;
    }

@media (max-width: 767px) {
    .rental-guide-section {
        padding: 38px 20px;
    }

    .rental-guide-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rental-guide-icon {
        width: 82px;
        height: 82px;
        font-size: 36px;
    }

    .rental-guide-content {
        text-align: left;
    }

        .rental-guide-content h2 {
            font-size: 24px;
            margin-bottom: 18px;
        }

    .rental-guide-list li {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 9px;
    }

    .rental-guide-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}


/*<!-- Coway Rental Process -->*/
.coway-rental-process {
    background: #f1f3f5;
    padding: 55px 20px;
    margin: 0;
}

.coway-rental-process .process-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.coway-rental-process .process-head {
    text-align: center;
    margin-bottom: 35px;
}

    .coway-rental-process .process-head h2 {
        margin: 0 0 10px;
        font-size: 30px;
        font-weight: 700;
        color: #202833;
        line-height: 1.4;
    }

    .coway-rental-process .process-head p {
        margin: 0;
        font-size: 16px;
        color: #555f6b;
        line-height: 1.6;
    }

/* PC - 5단계 가로형 */
.coway-rental-process .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
}

.coway-rental-process .process-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #aeb4bc;
    border-radius: 14px;
    padding: 25px 18px 23px;
    text-align: center;
    min-height: 185px;
    box-sizing: border-box;
}

.coway-rental-process .process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: #dbeaf1;
    color: #0078b5;
    font-size: 15px;
    font-weight: 700;
}

.coway-rental-process .process-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
    font-weight: 700;
    color: #202833;
    line-height: 1.45;
}

.coway-rental-process .process-card p {
    margin: 0;
    font-size: 14px;
    color: #4c5661;
    line-height: 1.55;
}

/* PC 화살표 */
.coway-rental-process .process-card:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #727b85;
    font-size: 24px;
    font-weight: 700;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {

    .coway-rental-process {
        background: #e8ebef;
        padding: 38px 16px;
    }

        .coway-rental-process .process-head {
            margin-bottom: 25px;
        }

            .coway-rental-process .process-head h2 {
                font-size: 22px;
                line-height: 1.4;
                margin-bottom: 8px;
            }

            .coway-rental-process .process-head p {
                font-size: 14px;
                line-height: 1.5;
                color: #48515b;
            }

        .coway-rental-process .process-grid {
            display: block;
        }

        .coway-rental-process .process-card {
            position: relative;
            min-height: auto;
            margin-bottom: 30px;
            padding: 20px 18px;
            text-align: left;
            border: 1.5px solid #a9b0b8;
            border-radius: 14px;
            background: #fafafa;
            display: grid;
            grid-template-columns: 58px 1fr;
            grid-template-rows: auto auto;
            column-gap: 16px;
            align-items: center;
        }

        .coway-rental-process .process-number {
            grid-row: 1 / 3;
            width: 54px;
            height: 54px;
            margin: 0;
            background: #d7e7ee;
            border: 1px solid #9aadb7;
            color: #0073aa;
            font-size: 15px;
        }

        .coway-rental-process .process-card h3 {
            margin: 0 0 5px;
            font-size: 17px;
            color: #1d2732;
            line-height: 1.4;
        }

        .coway-rental-process .process-card p {
            margin: 0;
            font-size: 14px;
            color: #434c55;
            line-height: 1.5;
        }

        /* 모바일 아래 방향 화살표 */
        .coway-rental-process .process-card:not(:last-child)::after {
            content: "↓";
            right: auto;
            left: 50%;
            top: auto;
            bottom: -25px;
            transform: translateX(-50%);
            color: #626c76;
            font-size: 17px;
            font-weight: 700;
        }

        .coway-rental-process .process-card:last-child {
            margin-bottom: 0;
        }
    }