.footer {
    background: #293146;
    color: #222;
    padding:2rem 5rem;
    margin-top: 2rem;
    font-size: 1rem;
    color: #fff;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.footerContainer {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem auto;
}
.footer-section {
    min-width: 180px;
    flex: 1 1 200px;
}
.footer-section h3, .footer-section h4 {
    color: #007bff;
    margin-bottom: 0.7rem;
}
.footer-section h4 {
    margin-bottom: 0.5rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}
.footer-section p, .footer-section a {
    font-size: 0.98rem;
    line-height: 1.7;
}
.footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #f1f0f0;
}
@media (max-width: 800px) {
    .footerContainer {
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-section {
        min-width: 0;
        width: 100%;
        text-align: center;
    }
    .footer-links{
        flex-direction: row;
    }
}