/* Footer Styles */
.footer {
    background-color: #1e3a8a; /* Darker blue background color */
    color: #e0e0e0;
    padding: 3rem 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #a5b4fc;
}

.footer-section p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section a:hover {
    color: #a5b4fc;
    text-decoration: none;
    opacity: 1;
}

.ownership {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #a5b4fc;
}

/* Specific styling for contact information */
.footer-section:last-child a[href^="mailto:"],
.footer-section:last-child a[href^="tel:"] {
    color: #ffffff;
    display: block;
    margin: 0.5rem 0;
    text-decoration: none;
}

.footer-section:last-child a[href^="mailto:"]:hover,
.footer-section:last-child a[href^="tel:"]:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
}
