.footer {
    background-color: #1a1e2e;
    color: #a0a0a0;
    padding: 20px 0;
    font-size: 12px;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin-right: 15px;
    margin-bottom: 5px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    margin-top: 5px;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 20px;
    height: auto;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links a {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .footer-right {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 10px;
    }

    .footer-links a, .footer-copyright {
        font-size: 10px;
    }

    .footer-logo {
        width: 15px;
    }
}
