#footer {
    width: 100%;
    background-color: #262D39;
    padding: 48px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-top {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 160px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #FFFFFF;
}

.footer-left .logo {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 800;
    width: fit-content;
    height: fit-content;
}

.footer-left .logo img {
    max-width: 162.002px;
    height: auto;
}

.footer-left .company-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.footer-left .company-info p {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #A8A9AB;
    margin: 0;
}

.footer-left .company-info .customer-hours {
    display: block;
    color: #FFFFFF52;
    margin-top: 4px;
}

.footer-center {
    display: flex;
    gap: 24px;
}

.footer-center .sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-center .sns-link:hover {
    background: rgba(255, 255, 255, 0.32);
}

.footer-center .sns-link img {
    width: 48px;
    height: 48px;
}

.footer-bottom {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.footer-bottom p {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #A8A9AB;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #A8A9AB;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* 반응형 스타일 */
@media (max-width: 1080px) {
    #footer {
        padding: 48px 20px;
        gap: 24px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-links a {
        text-decoration: underline;
    }

    .footer-center {
        gap: 16px;
    }

    .footer-center .sns-link {
        width: 48px;
        height: 48px;
        border-radius: 24px;
    }

    .footer-center .sns-link img {
        width: 24px;
        height: 24px;
    }
}