.proc-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

}

.proc-container h1 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 50px;
    margin-top: -145px;
}
.proc-container h2 {
    color: #000;
    font-size: 30px;
}
.proc-container p { font-size: 20px;}

.image-container {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.main-arrow {
    width: 70%;
    /* max-width: 600px; */
    margin: 0 auto;
    display: block;
    padding: 100px 0;
}

.text-overlay {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.arrow-info {
    margin-top: 20px;
    font-size: 20px;
    color: #666;
}

.icon-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -20px;
}

.logo {
    margin: 0 50px;
    width: 180px;
    height: auto;
}
.arrow-icon {
    height: 50px;
}
.customer-icon {
    margin: 0 50px;
    height: 50px;
}

.description {
    text-align: center;
    color: #666;
    padding: 20px;
}

table {
    width: 70%;
    border-collapse: collapse;
    margin: 0 auto;
}

table, th, td {
    border: 1px solid #ddd;
}
tr {
    font-size: 20px;
}
th, td {
    padding: 12px;
    text-align: center;
}

th {
    background-color: #f4f4f4;
}

td {
    background-color: #fff;
}

.rent-table th {
    background-color: #333;
    color: #fff;
}

.rent-table td:nth-child(2) {
    background-color: #fafafa;
}
.bottom-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* font-size: 18px; */
    color: #666;
    bottom: -4%;
}

.process {
    width: 70%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.rental-container {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto;
}

.box {
    background-color: #fff;
    border: 1px solid #ddd;
    width: 271px;
    height: 230px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    position: relative;
    align-content: center;
}

.circle {
    font-weight: bold;
    width: 40px;
    height: 40px;
    background-color: #091F3A;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-size: 16px;
    position: absolute;
    top: -20px;
    left: calc(50% - 20px);
    align-content: center;
}
.rental-box-img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}
.box p {
    color:#000;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.box .box-write {
    color: #666;
    font-size: 17px;
    font-weight: normal;
}
.rental-process-main {
    font-size: 30px;
    text-align: -webkit-center;
    margin-bottom: 60px;
}
.rental-process-main h2 {
    margin-bottom: 50px;
    margin-top: 50px;
}
.mobile-img {
    display: none;
}
.blue-box {
    background-color: #2e4158;
    color: white;
    margin-top: 10px;
    width: 100%;
    padding: 20px;
    display: flex;  /* 제목과 내용을 나란히 배치 */
    align-items: flex-start;  /* 텍스트가 위쪽에 맞춰지도록 설정 */
}
.text-container {
    text-align: left;  /* 텍스트 왼쪽 정렬 */
}

.blue-box h3 {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #FFD600;
    font-weight: bold;
    white-space: nowrap;
    align-self: center;
    margin-right: 50px;
}

.blue-box ul {
    list-style-type: none; /* 리스트 앞 번호 제거 */
    padding-left: 0; /* 리스트 안쪽 여백 제거 */
}

.blue-box ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.wrapper {
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
    /*padding: 20px;*/
    /*text-align: center;*/
}
.wrapper h2 {

}
.document-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 273px;
    margin: 10px;
    text-align: center;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: #e9e9e9;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 50px;
    height: auto;
}
h3 {
    font-size: 20px;
}
.card ul li{
    font-size: 17px;
    margin: 15px 0;
    text-align: left;
}
.numbered-list li {
    position: relative;
    padding-left: 35px;
    counter-increment: custom-counter;
}


.numbered-list li::before {
    content: counter(custom-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-color: #2E4158;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}
.numbered-list {
    counter-reset: custom-counter 0;
}


@media screen and (max-width: 960px) {
    .text-overlay {
        margin-top: -110px;
    }
    .desktop-img {
        display: none;
    }
    .mobile-img {
        display: block;
    }
    .wrapper {
        margin: 0 auto;
        width: 100%;
    }

    tr {
        font-size: 12px;
    }

    table {
        width: 100%;
    }

    .blue-box {
        margin-top: 10px;
        width: 100%;
        padding: 20px;
        display: flow;
    }

    .blue-box ul li {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .text-container {
        text-align: left;
        margin: 16px;
    }

    .blue-box h3 {
        margin-left: 0;
        margin-bottom: 0;
        font-size: 18px;
        white-space: nowrap;
        margin-right: 0;
    }

    .card ul li {
        font-size: 14px;
    }

    .process {
        width: 70%;
    }

    .proc-container h1, h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .proc-container p {
        font-size: 10px;
    }

    .customer-icon {
        margin: 0 10px;
        height: 18px;
    }

    .logo {
        margin: 0 15px;
        width: 70px;
        height: auto;
    }

    .arrow-info {
        margin-top: 0px;
        font-size: 10px;
    }

    .arrow-icon {
        height: 15px;
    }

    .main-arrow {
        width: 100%;
        padding: 50px 0;
        margin-top: 0px;
    }

    .proc-container {
        margin-top: 30px;
    }
    .bottom-text {
        left: 53%;
        bottom: -20%;
    }
    .top-text {
        margin-left: 20px;
        margin-bottom: 10px;
    }
}