/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo .logo {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer-links,
.footer-about {
    flex: 1;
    min-width: 250px;
    margin-top: 1rem;
}

.footer-links h4,
.footer-about h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0077cc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #0077cc;
}

.footer-about p {
    font-size: 1rem;
    color: #ccc;
}

.footer-bottom {
    margin-top: 2rem;
    font-size: 1rem;
    color: #ccc;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-links,
    .footer-about {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-logo .logo {
        font-size: 1.8rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }
}
