/* 푸터 스타일 */
.footer-container {
    width: 100%;
    background: #1A2029;
    padding: 65px 250px;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-title {
    color: white;
    font-size: 24px;
    font-family: 'Jalnan', sans-serif;
    font-weight: 700;
    line-height: 31.20px;
    word-wrap: break-word;
    margin: 0;
}

.footer-notice-list {
    color: white;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.footer-notice-list li {
    margin-bottom: 0;
}

.footer-compliance {
    color: white;
    font-size: 20px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
    margin: 0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .footer-container {
        width: 100%;
        padding: 60px 25px;
    }
    
    .footer-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .footer-notice-list {
        font-size: 15px;
        line-height: 28px;
        padding-left: 18px;
    }
    
    .footer-compliance {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        width: 100%;
        padding: 40px 20px;
    }
    
    .footer-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .footer-notice-list {
        font-size: 14px;
        line-height: 24px;
        padding-left: 16px;
    }
    
    .footer-compliance {
        font-size: 14px;
        line-height: 24px;
    }
}