footer {
    background-color: #f5f5f5;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2%;
}

.footer-container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    text-decoration: underline;
}