.main-footer {
    background-color: #222222;
    color: #ffffff;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    letter-spacing: -1px;
}

.footer-info {
    flex: 1;
    max-width: 50%;
}

.copyright {
    color: #ffffff;
    margin-bottom: 1rem;
}

.company-details {
    color: #ffffff;
    line-height: 1.6;
}

.company-details .dis-f {
    flex-direction: row;
    display: flex;
    gap: 1rem;
}

.company-details p {
    margin: 0.2rem 0;
}

.footer-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.terms-a-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.terms-a {
    border: none;
    color: #ffffff;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.90rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

.terms-a:hover {
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-a {
    background: #ffffff;
    text-decoration: none;
    border: none;
    color: #000000;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-a i {
    font-size: 1.2rem;
}

.social-a:hover {
    background-color: #f0f0f0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-info,
    .footer-right {
        max-width: 100%;
    }

    .terms-a-group,
    .footer-social {
        justify-content: center;
    }

    .terms-a-group {
        gap: 0.4rem;
    }

    .terms-a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}