/* 푸터 스타일 */
footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 25px 0 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.footer-left {
    flex: 0 0 260px;
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-logo-image {
    display: block;
    width: 160px;
    max-width: 100%;
    height: auto;
}

.footer-links {
    margin-bottom: 0;
    white-space: nowrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.company-info {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.company-info span {
    white-space: nowrap;
}

.footer-right {
    flex: 0 0 200px;
    text-align: right;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.phone-number a {
    color: inherit;
    text-decoration: none;
}

.business-hours {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.45;
}

.business-hours span {
    display: block;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    text-align: center;
    color: #999;
    font-size: 0.88rem;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-left {
        flex: none;
        text-align: center;
    }

    .footer-logo-image {
        width: 150px;
        margin: 0 auto;
    }
    
    .footer-center {
        order: 3;
    }
    
    .footer-right {
        flex: none;
        text-align: center;
    }
    
    .company-info span {
        white-space: normal;
        word-break: keep-all;
    }

    .company-info {
        justify-content: center;
        gap: 10px;
    }
    
    .phone-number {
        font-size: 1.25rem;
    }
} 
