 :root {
            --primary: #4a36ea;
            --primary-dark: #3826c2;
            --secondary: #6c4df0;
            --accent: #f26629;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
 /* Hero Section */
 section {
            padding: 80px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background:#e2c604;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .increaseroi {
            margin-top: 50px;
        }
        #usp p {
            color:#fff;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-accent {
            background:#ec2447;
        }
        
        .btn-accent:hover {
            background: #e05a22;
        }
        .hero {
            padding:100px 0 100px;
            background: linear-gradient(135deg, rgba(74, 54, 234, 0.1) 0%, rgba(108, 77, 240, 0.1) 100%);
            position: relative;
            overflow: hidden;
            margin-top:10%;
        }
        
        .hero-content {
            max-width: 650px;
            z-index: 2;
            position: relative;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--gray);
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            z-index: 1;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        /* USP Section */
        .usp {
            background:#e2c604;
            color: white;
        }
        
        .usp h2, .usp h3 {
            color: white;
        }
        
        .usp h2:after {
            background: white;
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .usp-item {
            display: flex;
            align-items: flex-start;
        }
        
        .usp-icon {
            font-size: 2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        /* ROI Section */
        .roi {
            background-color: var(--light);
        }
        
        .roi-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .roi-step {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background:#e2c604;
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: white;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .testimonial-card {
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            position: relative;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gray);
            margin-right: 15px;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(0,0,0,0.05);
        }
        
        /* CTA Section */
        .cta {
            background:#e2c604;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            color: white;
        }
        
        .cta h2:after {
            display: none;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }
  @media(max-width:767px) {
    .hero h1 {
        font-size:32px;
    }
    h2 {
        font-size:26px;
    }
    .services-grid {
        display:block;
        text-align:center;
    }
    .hero-buttons a {
        width:100%;
        margin-bottom:10px;
    }
    .usp-grid, .roi-steps {
        display:block;
    }
    .roi-step {
        margin-bottom:15px;
    }
    .testimonial-grid {
        display:block;
    }
  }      