/* footer.css */
footer {
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    line-height: 1.6;
    text-align: left;
}

.footer-column a {
    text-decoration: none;
    color: inherit;
}

.footer-column a:hover,
.footer-column a:visited {
    color: inherit;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.icon-circle {
    background-color: #585858;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
}

.icon-circle i {
    color: #fff;
}

.social-icons a {
    text-decoration: none;
}

/* For tablets and smaller devices */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        flex: 1 1 45%; /* Left and middle columns now take 45% width each */
        margin: 5px;
    }

    .footer-column.social-icons {
        flex: 1 1 100%; /* Right column (social icons) spans full width */
        justify-content: center;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .footer-column p,
    .footer-column ul {
    text-align: center;
    }
    
}

/* For phones and smaller devices */
@media (max-width: 480px) {
    .footer-container {
        justify-content: center; /* Center-align the entire footer */
    }

    .footer-column {
        flex: 1 1 45%; /* Left and middle columns now take 45% width each */
        margin: 5px;
    }

    .footer-column.social-icons {
        flex: 1 1 100%; /* Right column (social icons) spans full width */
        justify-content: center;
    }

    .icon-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8em;
    }
}