.footer {
    width: 100%;
    height: 100%;
    min-height: 537px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.footer-wrapper1 {
    width: 100%;
    min-height: 416px;
    height: 100%;
    background: #181818;
    display: flex;
    padding: 73px 106px;
}

.logo-container {
    width: auto;
    height: 100%;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
    max-height: 104px;
}

.footer-wrapper1-content1 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 199px;
    max-width: 220px;
}

.footer-wrapper1-content-item-address {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-wrapper1-content-item-address-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin-top: 20px;
    white-space: nowrap;
}

.footer-wrapper1-content-item-email {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 100px;
}

.footer-wrapper1-content-item-email-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin-top: 18px;
}

.footer-wrapper1-content2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 146px;
}

.footer-wrapper1-content-item-tel {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-wrapper1-content-item-tel-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin-top: 17px;
}

.footer-wrapper1-content-item-fax {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 31px;
}

.footer-wrapper1-content-item-fax-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    margin-top: 17px;
}

.footer-wrapper2 {
    width: 100%;
    height: 120px;
    background: #1C1C1C;
    display: flex;
    align-items: center;
    padding: 0 100px;
}

.footer-wrapper2-content {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

/* 반응형 스타일 */
@media screen and (max-width: 1024px) {
    .footer-wrapper1 {
        padding: 50px 60px;
        flex-wrap: wrap;
    }

    .footer-wrapper1-content1 {
        margin-left: 80px;
    }

    .footer-wrapper1-content2 {
        margin-left: 80px;
    }

    .footer-wrapper2 {
        padding: 0 60px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        min-height: auto;
    }

    .footer-wrapper1 {
        padding: 40px 30px;
        flex-direction: column;
        min-height: auto;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .footer-wrapper1-content1 {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .footer-wrapper1-content-item-email {
        margin-top: 30px;
    }

    .footer-wrapper1-content2 {
        margin-left: 0;
    }

    .footer-wrapper1-content-item-address-text {
        white-space: normal;
    }

    .footer-wrapper2 {
        height: auto;
        padding: 20px 30px;
    }

    .footer-wrapper2-content {
        font-size: 14px;
    }
}