
    .services-hero {
      background: linear-gradient(135deg, #2c5e1e, #1a3a10);
      color: white;
      padding: 3rem 2rem;
      text-align: center;
      border-radius: 0 0 50px 50px;
      margin-bottom: 3rem;
    }
    .services-hero h1 { color: white; margin-bottom: 1rem; }
    .services-hero p { font-size: 1.1rem; opacity: 0.9; }
    
    .services-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }
    
    .service-card {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    
    .service-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #2c5e1e, #e87c2a);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .service-icon i {
      font-size: 40px;
      color: white;
    }
    
    .service-content {
      flex: 1;
    }
    
    .service-content h2 {
      color: #2c5e1e;
      margin-bottom: 0.75rem;
      font-size: 1.5rem;
    }
    
    .service-content p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    
    .service-features {
      list-style: none;
      margin-top: 1rem;
    }
    
    .service-features li {
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .service-features li i {
      color: #e87c2a;
      font-size: 0.9rem;
    }
    
    .enquire-service-btn {
      background: #e87c2a;
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 40px;
      cursor: pointer;
      font-weight: 600;
      margin-top: 1rem;
      transition: background 0.2s;
      display: inline-block;
      text-decoration: none;
    }
    
    .enquire-service-btn:hover {
      background: #2c5e1e;
    }
    
    .process-section {
      background: #f9f9f9;
      border-radius: 40px;
      padding: 3rem 2rem;
      margin-top: 3rem;
      text-align: center;
    }
    
    .process-section h2 {
      color: #2c5e1e;
      margin-bottom: 2rem;
    }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .step {
      text-align: center;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      background: #e87c2a;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 1rem;
    }
    
    .step h4 {
      color: #2c5e1e;
      margin-bottom: 0.5rem;
    }
    
    .step p {
      color: #666;
      font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
      .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .service-features li {
        justify-content: center;
      }
      
      .process-steps {
        grid-template-columns: 1fr;
      }
    }

    

