/* Footer Styling */
.footer {
    background-color: #001F3F;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer .container {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

/* Affiliations Section */
.affiliations {
    flex: 1;
    min-width: 20rem;
}

.affiliations h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem to 1.5rem */
    margin-bottom: 1rem;
}

.affiliations ul {
    list-style-type: none;
    padding: 0;
}

.affiliations li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem; /* Reduced from 1rem to 0.9rem */
}

.footer-affiliation {
    width: 2.5rem; /* Reduced size for icons */
    height: auto;
    margin-right: 0.5rem;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    min-width: 20rem;
}

.contact-info h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem to 1.5rem */
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 0.9rem; /* Reduced from 1rem to 0.9rem */
    margin: 0.5rem 0;
}

/* Social Media Section */
.social-media {
    flex: 1;
    min-width: 20rem;
}

.social-media h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem to 1.5rem */
    margin-bottom: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1rem; /* Reduced from 1.2rem to 1rem */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon {
    width: 1.5rem; /* Reduced size for icons */
    height: 1.5rem;
    margin-right: 0.5rem;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: left;
    }

    .footer-affiliation,
    .social-icon {
        width: 2rem; /* Adjusted icon size for smaller screens */
    }

    .social-media a {
        font-size: 0.9rem; /* Reduced from 1rem to 0.9rem */
    }

    .contact-info p {
        font-size: 0.8rem; /* Slightly smaller text */
    }
}
