/* Footer Styles for French with Kunal */
.custom-footer {
    background-color: #000000;
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
    border-top: 4px solid #4A8C60;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #4A8C60;
    transform: translateY(-2px);
}

.footer-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4A8C60;
    transition: width 0.3s ease;
}

.footer-links a:hover:after {
    width: 100%;
}

.separator {
    color: #7f8c8d;
    font-weight: 300;
}

.copyright {
    font-size: 0.95rem;
    color: #bdc3c7;
}

.brand {
    font-weight: 600;
    color: #4A8C60;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .separator {
        display: none;
    }
    
    .custom-footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
}