:root {
      --primary: #FF4D4D;
      --secondary: #4D79FF;
      --accent: #FFD166;
      --dark: #1A1A2E;
      --light: #F5F5F5;
      --white: #FFFFFF;
      --gray: #666666;
      --light-gray: #f8f9fa;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.7;
      color: var(--dark);
      background-color: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-weight: 700;
      line-height: 1.3;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      text-align: center;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .hero p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto 40px;
      opacity: 0.9;
      position: relative;
      z-index: 2;
    }

    .btn {
      display: inline-block;
      background-color: var(--white);
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      position: relative;
      z-index: 2;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    /* Service Details */
    .service-details {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 2.25rem;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .section-title p {
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.05rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .feature-card {
      background-color: var(--white);
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border: 1px solid rgba(0,0,0,0.03);
      display: flex;
      flex-direction: column;
    }

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

    .feature-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .feature-card h3 {
      color: var(--dark);
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .feature-card p {
      color: #555;
      margin-bottom: 20px;
      font-size: 1rem;
      flex-grow: 1;
    }

    .service-features {
      list-style: none;
      margin-top: 20px;
    }

    .service-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .service-features i {
      font-size: 0.9rem;
      margin-right: 10px;
      color: var(--accent);
      margin-bottom: 0;
    }

    /* Projects */
    .projects {
      background-color: var(--light);
      padding: 80px 20px;
    }

    .project-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .project-card {
      background-color: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
    }

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

    .project-img {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .project-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .project-card:hover .project-img img {
      transform: scale(1.05);
    }

    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background-color: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    .project-card:hover .play-icon {
      background-color: var(--primary);
      color: var(--white);
    }

    .project-info {
      padding: 25px;
    }

    .project-info h3 {
      color: var(--dark);
      margin-bottom: 12px;
      font-size: 1.4rem;
    }

    .project-info p {
      color: var(--gray);
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .project-stats {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
      margin-top: 20px;
    }

    .stat {
      text-align: center;
      flex: 1;
      min-width: 80px;
    }

    .stat h4 {
      color: var(--primary);
      font-size: 1.5rem;
      margin-bottom: 5px;
    }

    .stat p {
      color: #777;
      font-size: 0.85rem;
      margin-bottom: 0;
    }

    /* Process */
    .process {
      background-color: var(--light);
      padding: 80px 20px;
    }

    .process-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 30px;
      counter-reset: step-counter;
      margin-top: 50px;
    }

    .step {
      background-color: var(--white);
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      position: relative;
      text-align: center;
      transition: all 0.4s ease;
    }

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

    .step::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      border-radius: 50%;
      font-weight: bold;
      font-size: 1.3rem;
      position: absolute;
      top: -25px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .step h3 {
      color: var(--dark);
      margin: 30px 0 15px;
      font-size: 1.3rem;
    }

    .step p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* CTA */
    .cta {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,160L48,176C96,192,192,224,288,218.7C384,213,480,171,576,144C672,117,768,107,864,122.7C960,139,1056,181,1152,192C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
      background-size: cover;
      background-position: bottom;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: 2.25rem;
      margin-bottom: 20px;
    }

    .cta p {
      margin-bottom: 35px;
      font-size: 1.05rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }

    .btn-secondary:hover {
      background-color: var(--white);
      color: var(--primary);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .hero h1 {
        font-size: 2.5rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 80px 20px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .service-details, .projects, .process, .cta {
        padding: 60px 20px;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .features-grid, .project-grid, .process-steps {
        grid-template-columns: 1fr;
      }

      .project-stats {
        justify-content: space-around;
      }

      .feature-card, .project-card, .step {
        padding: 25px 20px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
      }

      .section-title h2 {
        font-size: 1.6rem;
      }

      .feature-card i {
        font-size: 2rem;
      }

      .feature-card h3 {
        font-size: 1.3rem;
      }

      .project-info h3 {
        font-size: 1.2rem;
      }

      .stat {
        min-width: 70px;
      }

      .stat h4 {
        font-size: 1.3rem;
      }

      .cta h2 {
        font-size: 1.8rem;
      }
    }