/* Footer Styling Updates */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 1;
    min-width: 100px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact p {
    margin-bottom: 10px;
    font-weight: 600;
    color: #1E40AF;
}

.footer-contact a {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 8px;
    color: #1E40AF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-links, .footer-contact {
        width: 100%;
        align-items: center;
        margin-top: 15px;
    }
}
