        :root {
            --primary-green: #28a745;
            --secondary-dark: #1a2036;
            --light-green: #d4edda;
            --hover-green: #218838;
            --gradient-bg: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--primary-green) !important;
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary-dark) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
        }

        .btn-primary {
            background: var(--gradient-bg);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
        }

        .btn-outline-primary {
            color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--secondary-dark) 0%, #2c3e50 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .search-form {
            padding: 20px;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .search-input {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        /* Search Dropdown Styles */
        #search-dropdown {
            border-top: none !important;
            border-top-left-radius: 0 !important;
            border-top-right-radius: 0 !important;
            margin-top: -2px;
        }

        #search-dropdown li {
            border-bottom: 1px solid #f8f9fa;
        }

        #search-dropdown li:last-child {
            border-bottom: none;
        }

        #search-dropdown .dropdown-item {
            padding: 12px 20px;
            color: var(--secondary-dark);
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border: none;
            background: none;
        }

        #search-dropdown .dropdown-item:hover {
            background-color: var(--light-green);
            color: var(--primary-green);
            padding-left: 25px;
        }

        #search-dropdown .dropdown-item:focus {
            background-color: var(--light-green);
            color: var(--primary-green);
            outline: none;
        }

        .search-input.dropdown-active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom-color: transparent;
        }

        .search-btn {
            background: var(--gradient-bg);
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        /* How it works section */
        .how-it-works {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .step-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-bg);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        /* Verification Section */
        .verification-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .verification-badge {
            width: 100px;
            height: 100px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5rem;
            color: white;
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
            }
        }

        .verification-item {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 15px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-green);
            transition: all 0.3s ease;
        }

        .verification-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .verification-item i {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        /* Client Reviews Section */
        .reviews-section {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .review-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: var(--light-green);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 15px;
        }

        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .rating i {
            font-size: 1.1rem;
        }

        /* Mid-page CTA */
        .mid-cta {
            padding: 80px 0;
            background: var(--gradient-bg);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .mid-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .mid-cta-content {
            position: relative;
            z-index: 2;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .accordion-button {
            background: white;
            color: var(--secondary-dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            transition: all 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-green);
            color: var(--primary-green);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            padding: 25px;
            color: #666;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-bg);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
            /* CTA Section Responsive Styles */
            .cta-section {
                background: var(--gradient-bg);
                color: white;
                padding: 80px 0;
                position: relative;
                overflow: hidden;
            }

            .cta-section .cta-row {
                min-height: auto;
            }

            .cta-section .cta-image {
                height: 500px;
                min-height: 400px;
            }

            /* Desktop - maintain original height */
            @media (min-width: 992px) {
                .cta-section .cta-row {
                    min-height: 100vh;
                }
                
                .cta-section .cta-image {
                    height: 75vh;
                }
            }

            /* Tablet */
            @media (max-width: 991px) {
                .cta-section {
                    padding: 60px 0;
                }
                
                .cta-section h2 {
                    font-size: 2.5rem;
                }
                
                .cta-section .cta-image {
                    height: 400px;
                }
            }

            /* Mobile */
            @media (max-width: 767px) {
                .cta-section {
                    padding: 50px 0;
                }
                
                .cta-section h2 {
                    font-size: 2rem;
                }
                
                .cta-section h3 {
                    font-size: 1.5rem;
                }
                
                .cta-section .lead {
                    font-size: 1rem;
                }
                
                .cta-section .cta-image {
                    height: 300px;
                    min-height: 250px;
                }
                
                .cta-content {
                    padding: 0 15px;
                }
            }

            /* Small mobile */
            @media (max-width: 576px) {
                .cta-section {
                    padding: 40px 0;
                }
                
                .cta-section h2 {
                    font-size: 1.75rem;
                }
                
                .cta-section h3 {
                    font-size: 1.25rem;
                }
                
                .cta-section .cta-image {
                    height: 250px;
                    min-height: 200px;
                }
                
                .cta-section .btn-lg {
                    padding: 12px 20px;
                    font-size: 1rem;
                }
            }
                    /* Recommendations Section */
                    .recommendations {
                        padding: 100px 0;
                        background: white;
                    }

                    .recommendation-card {
                        background: var(--secondary-dark);
                        color: white;
                        padding: 30px;
                        border-radius: 15px;
                        height: 100%;
                        transition: all 0.3s ease;
                        position: relative;
                        overflow: hidden;
                    }

                    .recommendation-card::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 100px;
                        height: 100px;
                        background: var(--primary-green);
                        border-radius: 50%;
                        transform: translate(50%, -50%);
                        opacity: 0.1;
                    }

                    .recommendation-card:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 15px 40px rgba(26, 32, 54, 0.3);
                    }

                    .recommendation-icon {
                        width: 60px;
                        height: 60px;
                        background: var(--primary-green);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 20px;
                        font-size: 1.5rem;
                    }

                    /* Categories Section */
                    .categories {
                        padding: 100px 0;
                        background: #f8f9fa;
                    }

                    .category-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                        gap: 15px;
                        margin-top: 40px;
                    }

                    .category-item {
                        background: white;
                        padding: 20px;
                        border-radius: 10px;
                        text-align: center;
                        transition: all 0.3s ease;
                        border: 2px solid transparent;
                    }

                    .category-item:hover {
                        border-color: var(--primary-green);
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                    }

                    .category-item a {
                        text-decoration: none;
                        color: var(--secondary-dark);
                        font-weight: 500;
                    }

                    /* Footer */
                    .footer {
                        background: var(--secondary-dark);
                        color: white;
                        padding: 60px 0 20px;
                    }

                    .footer h5 {
                        color: var(--primary-green);
                        margin-bottom: 20px;
                    }

                    .footer a {
                        color: #adb5bd;
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }

                    .footer a:hover {
                        color: var(--primary-green);
                    }

                    .social-links a {
                        display: inline-block;
                        width: 40px;
                        height: 40px;
                        background: rgba(255,255,255,0.1);
                        border-radius: 50%;
                        text-align: center;
                        line-height: 40px;
                        margin-right: 10px;
                        transition: all 0.3s ease;
                    }

                    .social-links a:hover {
                        background: var(--primary-green);
                        transform: translateY(-2px);
                    }

                    /* Animations */
                    @keyframes fadeInUp {
                        from {
                            opacity: 0;
                            transform: translateY(30px);
                        }
                        to {
                            opacity: 1;
                            transform: translateY(0);
                        }
                    }

                    .fade-in-up {
                        animation: fadeInUp 0.8s ease-out;
                    }

                    /* Responsive Design */
                    @media (max-width: 768px) {
                        .hero h1 {
                            font-size: 2.5rem;
                        }
                        
                        .hero p {
                            font-size: 1.1rem;
                        }
                        
                        .search-form {
                            padding: 15px;
                        }
                        
                        .step-card, .review-card, .verification-item {
                            margin-bottom: 30px;
                        }

                        .category-grid {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 10px;
                        }
                    }

                    @media (max-width: 576px) {
                        .hero {
                            padding: 80px 0 60px;
                        }
                        
                        .hero h1 {
                            font-size: 2rem;
                        }

                        .verification-badge {
                            width: 80px;
                            height: 80px;
                            font-size: 2rem;
                        }

                        .reviewer-avatar {
                            width: 50px;
                            height: 50px;
                            font-size: 1.2rem;
                        }
                    }

                    /* Enhanced hover states */
                    .step-card:hover .step-icon {
                        transform: scale(1.1) rotate(5deg);
                    }

                    .recommendation-card:hover .recommendation-icon {
                        transform: scale(1.1);
                        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
                    }

                    /* Custom scrollbar */
                    ::-webkit-scrollbar {
                        width: 8px;
                    }

                    ::-webkit-scrollbar-track {
                        background: #f1f1f1;
                    }

                    ::-webkit-scrollbar-thumb {
                        background: var(--primary-green);
                        border-radius: 4px;
                    }

                    ::-webkit-scrollbar-thumb:hover {
                        background: var(--hover-green);
                    }

                    /* Focus states for accessibility */
                    .btn:focus,
                    .form-control:focus {
                        box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
                    }