/* 전체 */
.footer-modern {
    padding: 50px 0;
    font-size: 14px;
    background-color: #03213d;
}

/* 좌우 정렬 */
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center; /* ⭐ 이거 추가 */
    gap: 40px;
}

/* 좌측 */
.footer-left {
    flex: 1;
}

/* 메뉴 */
.footer-menu {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-left: 0 !important;
}

.footer-menu a {
    color: #dadada;
    font-weight: 500;
}

/* 회사 정보 */
.footer-company {
    margin-bottom: 10px;
    color: #dadada;
    line-height: 1.6;
}

/* 안내문 */
.footer-desc {
    margin-bottom: 15px;
    color: #dadada;
}

/* 카피 */
.footer-copy {
    font-size: 13px;
    color: #999;
}

/* 우측 박스 */
.footer-right {
    width: 260px;
}

.footer-cs-box {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
}

/* 고객센터 */
.cs-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.cs-phone {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.cs-time {
    font-size: 13px;
    color: #777;
}
@media (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
    }

    .footer-right {
        width: 100%;
    }
}
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}