/* Footer Section */
.footer-section {
    background-color: #292929;
    border-radius: 30px;
    max-width: 1838px;
    width: calc(100% - 82px);
    min-height: 300px;
    margin: 105px auto 0;
    position: relative;
    padding: 58px 68px 60px 68px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    height: 40px;
    width: 172px;
    margin-bottom: 60px;
}

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

.contact-title {
    color: white;
    font-size: var(--text-h3);
    letter-spacing: 1.31px;
    font-family: var(--font-alibaba-puhuiti-h);
    font-weight: var(--weight-heavy);
    line-height: 50px;
    margin-bottom: 60px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.company-name {
    color: white;
    font-size: var(--text-lg);
    letter-spacing: 0.87px;
    font-family: var(--font-alibaba-puhuiti-h);
    font-weight: var(--weight-heavy);
    line-height: 33px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-address,
.company-email {
    color: #d8d8d8;
    font-size: var(--text-md);
    letter-spacing: 0.65px;
    font-family: var(--font-alibaba-puhuiti);
    font-weight: var(--weight-semibold);
    line-height: 25px;
}

.footer-bottom {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1920px;
}

.copyright-text {
    color: #cccccc;
    font-size: var(--text-md);
    letter-spacing: 0.65px;
    font-family: var(--font-alibaba-puhuiti);
    font-weight: var(--weight-regular);
    line-height: 25px;
}

/* Responsive - Large Screens */
@media (min-width: 1838px) {
    .footer-section {
        margin-left: auto;
        margin-right: auto;
        max-width: 1838px;
        width: calc(100% - 82px);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .footer-section {
        width: calc(100% - 40px);
        margin: 60px 20px 0;
        padding: 40px;
        min-height: auto;
    }
    
    .footer-content {
        align-items: center;
        text-align: center;
    }
    
    .company-info {
        align-items: center;
    }
    
    .company-details {
        align-items: center;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .footer-section {
        width: calc(100% - 30px);
        margin: 20px 15px 0; /* Reduced from 40px to 20px */
        padding: 40px 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .footer-content {
        align-items: center;
        text-align: center;
    }

    .footer-logo-wrapper {
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-title {
        font-size: var(--text-xl);
        line-height: 1.3;
        margin-bottom: 30px;
        text-align: center;
    }

    .company-info {
        gap: 20px;
        align-items: center;
    }

    .company-name {
        font-size: var(--text-lg);
        line-height: 1.4;
        text-align: center;
    }

    .company-details {
        gap: 15px;
        align-items: center;
    }

    .company-address,
    .company-email {
        font-size: var(--text-sm);
        line-height: 1.5;
        text-align: center;
    }

    .footer-bottom {
        padding: 30px 15px;
    }

    .copyright-text {
        font-size: var(--text-xs);
        line-height: 1.5;
    }
}
