@charset "utf-8";

/* Footer */
footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 60px 0;
    font-size: 14px;
    color: #666;
    font-family: 'NanumSquare', sans-serif;
}

footer .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.f-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s;
    filter: grayscale(0%);
    opacity: 0.6;
}

.f-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    flex: 1;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin-right: 25px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.footer-info span {
    margin-right: 15px;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-info span::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    margin-left: 15px;
    vertical-align: middle;
}

.footer-info span:last-child::after {
    display: none;
}

.copyright {
    margin-top: 15px;
    color: #999;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.wa-mark {
    height: 50px;
    width: auto;
}

.footer-main-logo {
    height: 50px;
    width: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .link-privacy { font-weight: 700; color: #513C93; }
}

@media (max-width: 768px) {
    .footer-logos {
        justify-content: center;
        gap: 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-links a {
        display: inline-block;
        margin: 5px 15px;
    }
    .footer-info span::after {
        display: none;
    }
    .footer-right {
        flex-direction: column;
    }
}