/* Footer styles */
.footer {
    background-color: #2c2c2c;
    padding: 3rem 0;
    margin-top: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    background-color: #2c2c2c;
}

.footer-left {
    flex: 1;
    padding-left: 25px;
}

.footer-logo {
    height: 3.5rem;
    margin-bottom: 1rem;
}

.footer-slogan {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright,
.footer-icp {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-police {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.police-icon {
    width: 1rem;
    height: 1rem;
}

.footer-right {
    flex: 1;
    max-width: 400px;
}

.contact-title {
    color: #ff6b98;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.company-name {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 2;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1rem;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        padding: 0;
        margin: 0 auto;
    }

    .footer-right {
        max-width: 300px;
    }

    .footer-logo {
        height: 3rem;
        margin: 0 auto 1rem;
    }

    .footer-slogan {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        align-items: center;
        gap: 1rem;
    }

    .footer-police {
        justify-content: center;
    }

    .contact-title {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .company-name {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .contact-info {
        font-size: 0.875rem;
        line-height: 1.8;
    }
} 