

main {
    padding-bottom: 10px;
}

footer {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-top: 5rem;
    background: #f8fafc;
    box-sizing: border-box;
}

footer .container {
    display: flex;
    min-height: 30vh;
    gap: 1rem;
    box-sizing: border-box;
    padding: 0 1rem;
}

footer .footerBox {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

footer .infoArea {
    flex: 1;
}

footer .menuArea {
    flex: 1.5;
    display: flex;
    gap: 1.5rem;
}

footer .contactArea {
    flex: 0.8;
}

footer .infoArea .footer-logo {
    margin-bottom: 1.5rem;
}

footer .infoArea .footer-logo img {
    height: 100px;
    width: auto;
}

footer .infoArea .footer-desc {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

footer .infoArea .footer-social {
    display: flex;
    gap: 0.75rem;
}

footer .infoArea .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f3f4f6;
    border-radius: 8px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .infoArea .footer-social a i {
    font-size: 1rem;
}

footer .infoArea .footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

footer .menuArea .menu {
    flex: 1;
}

footer .menuArea .menu-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

footer .menuArea .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .menuArea .menu-list li {
    margin-bottom: 0.5rem;
}

footer .menuArea .menu-list a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer .menuArea .menu-list a:hover {
    color: var(--primary-color);
}

footer .contactArea .contact-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

footer .contactArea .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

footer .contactArea .contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.125rem;
    min-width: 16px;
}

footer .contactArea .contact-item-content {
    flex: 1;
}

footer .contactArea .contact-item-label {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

footer .contactArea .contact-item-value {
    color: #374151;
    font-size: 0.9rem;
    text-decoration: none;
}

footer .contactArea .contact-item-value:hover {
    color: var(--primary-color);
}


footer .bottomContainer {
    height: auto;
    min-height: auto;
    margin-bottom: 10px;
}
footer .footer-bottom {
    margin-top: 10px;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
    footer .container {
        padding: 0 1rem;
    }
    
    footer .footerBox {
        padding: 1.5rem;
    }
    
    footer .menuArea {
        gap: 1rem;
    }
    
    footer .contactArea .contact-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    footer .menuArea {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }
    
    footer .footerBox {
        padding: 1.5rem;
        margin: 0;
    }
    
    footer .infoArea .footer-logo img {
        height: 80px;
    }
    
    footer .contactArea .contact-title,
    footer .menuArea .menu-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    footer .contactArea .contact-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    footer .container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    footer .footerBox {
        padding: 1rem;
        border-radius: 12px;
    }
    
    footer .infoArea .footer-logo img {
        height: 70px;
    }
    
    footer .infoArea .footer-desc {
        font-size: 0.85rem;
    }
    
    footer .menuArea .menu-title,
    footer .contactArea .contact-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    footer .menuArea .menu-list a {
        font-size: 0.85rem;
    }
    
    footer .contactArea .contact-item-value {
        font-size: 0.85rem;
    }
    
    footer .footer-bottom {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    footer .container {
        padding: 0 0.25rem;
    }
    
    footer .footerBox {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    footer .infoArea .footer-logo img {
        height: 60px;
    }
    
    footer .infoArea .footer-social {
        gap: 0.5rem;
    }
    
    footer .infoArea .footer-social a {
        width: 30px;
        height: 30px;
    }
    
    footer .contactArea .contact-item {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 360px) {
    footer {
        margin-top: 3rem;
    }
    
    footer .container {
        padding: 0;
        gap: 0.75rem;
    }
    
    footer .footerBox {
        padding: 0.5rem;
        border-radius: 6px;
    }
    
    footer .infoArea .footer-logo img {
        height: 50px;
    }
    
    footer .infoArea .footer-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    footer .menuArea .menu-title,
    footer .contactArea .contact-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    footer .menuArea .menu-list li {
        margin-bottom: 0.5rem;
    }
    
    footer .menuArea .menu-list a {
        font-size: 0.8rem;
    }
    
    footer .contactArea .contact-item-value {
        font-size: 0.8rem;
    }
    
    footer .footer-bottom {
        padding: 0.5rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
}

