
.footer_main {
    background-color: #484747; /* Footer background */
    color: white; /* Text color */
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif; /* 기본 폰트 */
    padding: 55px 50px;
    margin-top: 80px;
    margin-bottom: auto; /* Push footer to bottom */


}

.footer_main .footer-left,
.footer_main .footer-center,
.footer_main .footer-right {
    display: inline-block;
    vertical-align: top;
}

.footer_main .footer-left {
    width: 40%;
}

.footer_main .titler {
    color: white; /* Title text color */
    font-family: 'Playfair Display', serif; /* 고급스러운 느낌의 Serif 폰트 */
    font-size: 36px; /* 제목 크기 조정 */
    font-weight: 700; /* 제목 두껍게 */
    margin: 0;
}

.footer_main .footer-links {
    color: white; /* Links text color */
    margin: 20px 0 12px;
    padding: 0;
    font-size: 16px; /* 링크 폰트 크기 조정 */
}

.footer_main .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer_main .footer-company-name {
    color: white;
    font-size: 14px; /* 회사명 크기 조정 */
    font-weight: normal;
    margin: 0;
}

.footer_main .footer-center {
    width: 35%;
}

.footer_main .footer-center i {
    background-color: #555; /* Icon background */
    color: white; /* Icon color */
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer_main .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer_main .footer-center p {
    display: inline-block;
    color: white; /* Text color */
    vertical-align: middle;
    margin: 0;
    font-size: 15px; /* 연락처 크기 조정 */
}

.footer_main .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer_main .footer-center p a {
    color: white; /* Email link color */
    text-decoration: none;
}

.footer_main .footer-right {
    width: 20%;
}

.footer_main .footer-company-about {
    line-height: 20px;
    color: white; /* About text color */
    font-family: 'Poppins', sans-serif; /* 세련된 sans-serif 폰트 */
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}

.footer_main .footer-company-about span {
    display: block;
    color: white; /* About title color */
    font-size: 16px; /* 제목 크기 조정 */
    font-weight: bold;
    margin-bottom: 20px;
}

.footer_main .footer-icons {
    margin-top: 25px;
}

.footer_main .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #555; /* Icon background */
    border-radius: 2px;
    font-size: 20px;
    color: white; /* Icon color */
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}


.numbered-list > div {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

/* This is where the numbering happens */
.numbered-list > div::before {
    content: counter(list-item) ". "; /* Numbering format: "1. " */
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
}

.numbered-list {
    counter-reset: list-item;
}
.mobile-links .hie{
    display : none;
}
@media (max-width: 880px) {
    .footer_main .footer-center{
        display : none;
    }
    .footer_main {
        font: bold 14px 'Poppins', sans-serif;
    }

    .footer_main .footer-left,
    .footer_main .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .mobile-links .hie{display :block;}


    .numbered-list {
        display: none; /* Center the entire numbered list */
    }
    .footer-company-about{
        display : none;
    }

    .numbered-list > div {
        display: inline-block; /* Ensure each item stays inline */
        position: relative;
        margin-bottom: 5px;
        padding-left: 0; /* Remove left padding */
        width: 100%; /* Make each item take full width */
    }

    .hie{
        font-size:18px;
    }

    .numbered-list > div::before {
        content: counter(list-item) ". "; /* Ensure numbers are displayed */
        counter-increment: list-item;
        position: relative; /* Ensure numbers are inline with text */
        left: 0; /* Reset positioning */
        transform: none; /* Remove any centering transform */
        margin-right: 5px; /* Space between number and text */
    }
}