
.site-footer {
    background: #8f2727;
    color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
}

.copyright-bar {
    max-width: 1309px;
    margin: 0 auto;
    padding: 20px;
}


.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-section h3 span {
    color: #6e8efb;
    font-weight: 400;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #7a7a90;
}

.footer-section ul li svg {
    color: #6e8efb;
    flex-shrink: 0;
}

.footer-section ul li a {
    color: #7a7a90;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6e8efb;
    transition: width 0.2s ease;
}

.footer-section ul li a:hover {
    color: #6e8efb;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-bar {
        padding: 40px 20px 0;
    }
}