:root {
            --primary: #4A3B93;
            --secondary: #6C5BCC;
            --accent: #FF6B35;
            --light: #F5F7FA;
            --dark: #2D3748;
            --text: #4A5568;
        }
        .cta-button {
            background-color:#ec2447;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }
        
        .cta-button:hover {
            background-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .cta-button-secondary:hover {
            background-color: white;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background:#e2c604;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-top:10%;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color:#fff;
        }
        
        /* Services Section */
        .services {
            padding: 5rem 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color:#00b0dd;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
/*            background-color:#ec2447;*/
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            background:#e2c604;
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }
        
        .service-card h3 {
            color:#000;
            margin-bottom: 1rem;
        }
        
        /* Results Section */
        .results {
            padding: 5rem 0;
            background: white;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .result-item {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: var(--light);
            transition: all 0.3s ease;
        }
        
        .result-item:hover {
            background:#00b0dd;
            color: white;
        }
        .result-item:hover p {
            color:#fff;
        }
        .result-item:hover h3 {
            color: white;
        }
        
        .result-number {
            font-size: 3rem;
            font-weight: 700;
            color:#ec2447;
            margin-bottom: 0.5rem;
        }
        
        .result-item:hover .result-number {
            color: white;
        }
        
        /* Process Section */
        .process {
            padding: 5rem 0;
            background: var(--light);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background:#e2c604;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .step::after {
            content: '→';
            position: absolute;
            top: 50%;
            right: -10px;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--primary);
        }
        
        .step:last-child::after {
            display: none;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 5rem 0;
            background: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background:#e2c604;
            margin-right: 1rem;
            overflow: hidden;
        }
        
        .author-details h4 {
            margin-bottom: 0.2rem;
            color: var(--primary);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background:#fff;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color:#00b0dd;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.2rem;
        }