/* 모바일 푸터 스타일 */
.mobile-footer {
    background: #ffffff;
    padding: 40px 20px;
    background-color: #f7f7f7;
}

.mobile-footer-inner {
    max-width: 100%;
}

.mobile-footer-logo {
    display: block;
    margin-bottom: 24px;
}

.mobile-footer-logo img {
    height: 24px;
    width: auto;
}

.mobile-footer-info {
    margin-bottom: 10px;
}

.mobile-footer-info__text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.mobile-footer-info__box + .mobile-footer-info__box {
    /* margin-top: 10px; */
}

.mobile-footer-email {
    color: #666;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}

.mobile-footer-address {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    white-space: nowrap;
}

.mobile-footer-business-number {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.mobile-footer-website {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.mobile-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.mobile-footer-copyright {
    color: #666;
    font-size: 12px;
}

.mobile-footer-links {
    display: flex;
    gap: 8px;
}

.mobile-footer-social-link {
    display: block;
}

.mobile-footer-social-link img {
    max-width: 20px;
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.mobile-footer-policy {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

/* 푸터 상단 영역 */
.mobile-footer-top {
    margin-bottom: 30px;
}

.mobile-footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

/* 푸터 링크 영역 */
.mobile-footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-footer-link-group h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.mobile-footer-link-group a {
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-footer-link-group a:hover {
    color: #ffffff;
}

/* 푸터 하단 영역 */
.mobile-footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-footer-legal a {
    font-size: 12px;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-footer-legal a:hover {
    color: #ffffff;
}

/* 소셜 미디어 링크 */
.mobile-footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-footer-social a:hover {
    background: #555555;
}

.mobile-footer-social img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mobile-footer-address + .mobile-footer-address{
     margin-right: 10px;

}