/* 푸터 스타일 */
#footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-family: 'Noto Sans KR', sans-serif;
}

.footer_in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 로고 영역 */
.footer_logo {
    flex: 1;
    margin-right: 40px;
}

.logo_text {
    text-align: left;
}

.logo_main {
    font-size: 32px;
    font-weight: bold;
    font-family: serif;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
}

.logo_main::after {
    content: "🌿";
    position: absolute;
    top: -5px;
    right: -20px;
    font-size: 16px;
}

.logo_sub {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 400;
}

.logo_korean {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* 회사 정보 영역 */
.footer_info {
    flex: 2;
    margin-right: 40px;
}

.info_item {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.info_item strong {
    color: #fff;
    margin-right: 8px;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #ccc;
}

.copyright strong {
    color: #fff;
}

/* 연락처 영역 */
.footer_contact {
    flex: 1;
    text-align: left;
}

.contact_title {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.contact_number {
    margin-bottom: 15px;
}

.contact_number a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.contact_number a:hover {
    color: #0e9447;
}

.contact_hours {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
}

.contact_hours div {
    margin-bottom: 3px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #footer {
        padding: 30px 0;
    }
    
    .footer_in {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer_logo,
    .footer_info,
    .footer_contact {
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .logo_text {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .logo_main {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .logo_sub {
        font-size: 11px;
        margin-bottom: 10px;
    }
    
    .logo_korean {
        font-size: 16px;
        font-weight: bold;
    }
    
    .footer_info {
        margin-bottom: 20px;
    }
    
    .info_item {
        margin-bottom: 6px;
        font-size: 13px;
        text-align: center;
    }
    
    .copyright {
        margin-top: 15px;
        font-size: 11px;
        text-align: center;
    }
    
    .footer_contact {
        margin-top: 10px;
    }
    
    .contact_title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .contact_number {
        margin-bottom: 10px;
    }
    
    .contact_number a {
        font-size: 18px;
        font-weight: bold;
    }
    
    .contact_hours {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .contact_hours div {
        margin-bottom: 2px;
    }
}
