footer {
    background-color: lightgray;
    padding: 20px;
    text-align: center;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 10px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 5px;
    font-size: 14px;
    color: black; /* Lighter grey for contrast */
}

.footer-section p {
    margin: 0;
    font-size: 14px;
    color: black; /* Lighter grey for contrast */
}

.footer-section a {
    display: block;
    text-decoration: none;
    color: black; /* Lighter grey for contrast */
    font-size: 14px;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff2133; /* Changes to red on hover */
}

.footer-bottom {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

.footer-body{
    margin-left: 20%;
    margin-right: 20%;
}

.privacy {
    margin-top: 13px;
}

@media (min-width: 200px) and (max-width: 700px) {
    .footer-body{
        margin-left: 2%;
        margin-right: 2%;
    }
}