    /* ePROMIS-specific styles */
    .epromis-hero {
      background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .epromis-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/erp-network.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .epromis-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .epromis-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .epromis-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .epromis-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .epromis-feature-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    
    .epromis-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .epromis-feature-icon {
      font-size: 2.5rem;
      color: #3498db;
      margin-bottom: 15px;
    }
    
    .epromis-modules-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .epromis-modules-table th {
      background-color: #2c3e50;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .epromis-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .epromis-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .epromis-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .epromis-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .epromis-industry-tag {
      background: #e6f2ff;
      color: #2c3e50;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .epromis-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .epromis-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .epromis-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .epromis-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .epromis-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .epromis-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .epromis-pros-card, .epromis-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .epromis-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .epromis-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .epromis-pros-card h3, .epromis-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .epromis-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .epromis-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .epromis-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .epromis-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .epromis-rating-text {
      font-weight: 600;
    }
    
    .epromis-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .epromis-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .epromis-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #2c3e50;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .epromis-pricing-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin: 40px 0;
      border-top: 5px solid #3498db;
    }
    
    .epromis-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .epromis-pricing-feature i {
      color: #3498db;
      margin-right: 10px;
    }

    /* Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
}

.timeline-line {
  position: absolute;
  width: 6px;
  background-color: #3498db;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 3px;
}

.timeline-step {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-step:nth-child(odd) {
  left: 0;
}

.timeline-step:nth-child(even) {
  left: 50%;
}

.timeline-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #2c3e50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -25px;
  top: 15px;
  z-index: 1;
  font-size: 1.5rem;
}

.timeline-step:nth-child(even) .timeline-icon {
  left: -25px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #2c3e50;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 31px;
  }
  
  .timeline-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-step:nth-child(even) {
    left: 0;
  }
  
  .timeline-icon {
    left: 6px;
    right: auto;
  }
}