        :where([class^="ri-"])::before {
            content: "\f3c2";
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
        }

        .hero-section {
            background-image: linear-gradient(to right, rgba(26, 35, 126, 0.9), rgba(26, 35, 126, 0.7)), url('../images/bg.jpg');
            background-size: cover;
            background-position: center;
        }

        .testimonial-card {
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .service-card {
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
        }

        .pricing-card {
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .blog-card {
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #1A237E;
        }

        .custom-checkbox {
            display: none;
        }

        .custom-checkbox-label {
            position: relative;
            padding-left: 30px;
            cursor: pointer;
        }

        .custom-checkbox-label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #1A237E;
            border-radius: 4px;
            background-color: white;
        }

        .custom-checkbox:checked+.custom-checkbox-label:before {
            background-color: #1A237E;
        }

        .custom-checkbox:checked+.custom-checkbox-label:after {
            content: '\2713';
            position: absolute;
            left: 5px;
            top: -1px;
            color: white;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .animate-text {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .animate-text-delay-1 {
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
            opacity: 0;
        }

        .animate-text-delay-2 {
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            opacity: 0;
        }

        .animate-fade-in {
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .hero-section {
                padding-top: 100px;
                padding-bottom: 80px;
                text-align: center;
            }

            .hero-section h1 {
                font-size: 2.25rem;
                line-height: 1.2;
            }

            .hero-section p {
                font-size: 1rem;
            }

            .service-card,
            .testimonial-card,
            .pricing-card,
            .blog-card {
                margin-bottom: 20px;
            }

            .contact-form {
                padding: 20px;
            }

            .contact-info {
                padding: 20px;
            }

            .footer-links {
                margin-bottom: 30px;
            }

            .mobile-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                z-index: 1000;
            }

            .mobile-menu.active {
                display: block;
            }
        }