        /* CTA Section */
        .cta {
            padding: 5rem 5%;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background-color: #291f75;
            color: #e2e8f0;
            padding: 4rem 5% 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            text-decoration: none;
        }

        .footer-logo img {
            /* width: 300px; */
            height: 60px;
        }

        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
        }

        .footer-about {
            max-width: 300px;
        }

        .footer-about-text {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: #f01318;
            transform: translateY(-3px);
        }

        .footer-links-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 0.75rem;
        }

        .footer-link a {
            color: var(--footer-text);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-link a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            opacity: 0.7;
            font-size: 0.875rem;
        }




        /* Responsive Styles */
        @media (max-width: 480px) {
            .cta-title {
                font-size: 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

