/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

footer .contact-section {
    padding: 10px; /* Adjust padding as needed */
}

footer .columns {
    display: flex;
    justify-content: space-around;
}

footer .column {
    flex: 1;
    max-width: 300px; /* Adjust max-width as needed */
    text-align: left;
}

footer .address-column p {
    margin-bottom: 10px;
    line-height: 1.5;
}

footer .social-icons {
    margin-top: 1rem;
}

footer .social-icons a {
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
    font-size: 1.2rem;
}

footer .social-icons a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    footer .columns {
        flex-direction: column;
        align-items: center;
    }

    footer .column {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem; /* Add spacing between columns */
    }

    footer .contact-section {
        padding: 10px; /* Adjust padding for mobile */
    }
}
