<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero section */
        .services-hero {
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .services-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1200/600');
            background-size: cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .services-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Services introduction */
        .services-intro {
            padding: 90px 0;
            text-align: center;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            /* display: inline-block; */
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #2575fc;
            margin: 15px auto 0;
        }
        
        .section-description {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Services cards */
        .services-section {
            padding: 90px 0;
            background-color: #f0f4f8;
        }
        
        .services-section .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: auto;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #2575fc;
            margin-bottom: 20px;
            padding: 1.5rem 0;;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
            text-align: center;
        }
        
        .service-description {
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .service-features {
            margin-bottom: 25px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 10px;
        }
        
        .feature-icon {
            color: #2575fc;
            margin-right: 10px;
            font-size: 1rem;
            min-width: 1rem;
            margin-top: 3px;
        }
        
        .service-cta {
            display: inline-block;
            background-color: #f0f4f8;
            color: #2575fc;
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
            text-align: center;
            border: 2px solid #2575fc;
        }
        
        .service-cta:hover {
            background-color: #2575fc;
            color: white;
        }
        
        /* Approach section */
        .approach-section {
            padding: 90px 0;
            background-color: white;
        }
        
        .approach-section .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .approach-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .approach-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .approach-image img {
            width: 100%;
            height:80vh;
            display: block;
        }
        
        .approach-text {
            flex: 1;
            min-width: 300px;
        }
        
        .approach-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .approach-list {
            list-style: none;
        }
        
        .approach-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .approach-item-icon {
            background: #2575fc;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .approach-item-content h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #333;
        }
        
        .approach-item-content p {
            color: #555;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 90px 0;
            background-color: white;
            text-align: center;
        }
        
        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            max-width: 350px;
            text-align: left;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: #2575fc;
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .testimonial-rating {
            color: #ffc107;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 1rem;
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-client {
            display: flex;
            align-items: center;
        }
        
        .client-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-info h4 {
            font-size: 1rem;
            margin-bottom: 3px;
        }
        
        .client-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        /* CTA section */
        .cta-section {
            padding: 90px 0;
            background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .btn-cta {
            display: inline-block;
            background-color: white;
            color: #2575fc;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background-color: #f9f9f9;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .approach-content {
                flex-direction: column;
            }
            
            .approach-image, .approach-text {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle, .section-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-hero {
                padding: 80px 0 50px;
            }
            
            .services-intro, .services-section, .approach-section, .faq-section, .testimonials, .cta-section {
                padding: 60px 0;
            }
        }
    </pre></body></html>