/* Footer */
footer {
    background: linear-gradient(135deg, #1e3c72, #0d1b2a);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 0;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-logo {
    margin-bottom: 2rem;
}

footer .footer-logo img {
    height: 80px;
    width: auto;
    filter: brightness(1.1);
    margin-bottom: 1rem;
}

footer .footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

footer .footer-tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 2.5rem;
    }
    
    .landing-logo img {
        width: 150px;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-box {
        padding: 3rem 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(30, 60, 114, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}