.footer-container {
    background-color: #222; /* Dark background */
    color: #ffffff;
    padding: 20px 0;
    width: 100%;
    font-family: Arial, sans-serif;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* Desktop par side-by-side */
    align-items: center;
    flex-wrap: wrap; /* Choti screen par niche shift hone ke liye */
}

.footer-content p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* --- Mobile Compatibility --- */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column; /* Mobile par center alignment */
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 10px;
    }
}