/* Footer */
.footer {
    background-color: #3d6a99; /* Deeper, more sophisticated blue */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 3rem 0 2rem;
    box-shadow: inset 0 8px 16px -8px rgba(0, 0, 0, 0.1);
}

.footer-brand {
    font-weight: 800;
    font-size: 1.75rem;
    color: #f8fafc; /* Slightly off-white for better readability */
    letter-spacing: -0.02em;
}

.text-navy {
    color: #1a365d !important; /* Darker navy for better contrast */
}

.footer-brand span {
    color: #90cdf4; /* Lighter blue accent */
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none; /* Ensure no underline */
    display: block;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff; /* Brighter white on hover */
}

.tagline {
    color: #f8fafc;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-divider {
    border-color: white; 
    margin: 2rem 0;
}

.social-icons a {
    color: #f8fafc;
    text-decoration: none;
    font-size: 1.3rem;
    margin: 0 0.5rem;
    display: inline-block;
}

.social-icons a:hover {
    color: #90cdf4;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
        padding: 2rem 0;
    }
    
    .tagline {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        line-height: 1.4;
    }
    
    .social-icons {
        margin-top: 1.5rem;
    }
    
    .footer-links {
        margin: 1rem 0 2rem;
    }
}
