/* Footer Section */
.footer {
    background: #131316;
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 283px;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    text-transform: lowercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    object-position: center;
    max-width: 300px;
    transform: scale(3);
    margin-bottom: 20px;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #333;
    margin-bottom: 20px;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #9AA4B2;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px 40px;
        margin-bottom: 40px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}