/* Footer Styles - Main Site */
.footer {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    width: 100%;
    max-width: 1920px;
    height: 179px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    box-sizing: border-box;
}

.footer-privacy {
    font-family: 'Pretendard GOV', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.28px;
    color: #838383;
}


.footer-info {
    font-family: 'Pretendard GOV', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
    line-height: 16.7px;
    letter-spacing: -0.28px;
    color: #838383;
    word-break: keep-all;
    margin: 10px 30px;
}

.footer-copyright {
    font-family: 'Pretendard GOV', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.28px;
    color: #ffffff;
    opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        height: auto;
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-privacy,
    .footer-info,
    .footer-copyright {
        font-size: 12px;
    }
}
