/* Footer */
footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 40px 0;
    font-family: 'Noto Sans KR', sans-serif;
}

footer > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

footer > div > div:first-child {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #636e72;
}

/* Logo and Slogan */
footer > div > div:first-child > div:first-child {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

footer > div > div:first-child > div:first-child img {
    height: 60px;
    margin-right: 25px;
    filter: brightness(1.2);
}

footer > div > div:first-child > div:first-child > div {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.6;
    word-break: keep-all;
}

/* Company Info Grid */
footer > div > div:first-child > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: start;
}

footer > div > div:first-child > div:last-child > div {
    display: flex;
    flex-direction: column;
}

footer h4 {
    font-size: 16px;
    color: #f58f27;
    font-weight: 600;
    margin: 0 0 15px 0;
}

footer p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.7;
    margin: 0;
    word-break: keep-all;
}

footer p span {
    color: #ddd;
    margin-top: 8px;
    display: block;
}

footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f58f27;
}

/* Copyright */
footer > div > div:last-child {
    text-align: center;
}

footer > div > div:last-child p {
    font-size: 12px;
    color: #636e72;
    margin: 0;
    word-break: keep-all;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 30px 0 !important;
    }
    
    footer > div {
        padding: 0 20px !important;
    }
    
    footer > div > div:first-child {
        margin-bottom: 30px !important;
    }
    
    footer > div > div:first-child > div:first-child img {
        height: 40px !important;
        margin-right: 20px !important;
    }
    
    footer > div > div:first-child > div:first-child > div {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    footer > div > div:first-child > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    footer h4 {
        font-size: 14px !important;
    }
    
    footer p {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }
    
    footer p span {
        font-size: 12px !important;
    }
    
    footer > div > div:last-child p {
        font-size: 11px !important;
    }
}
