
    /* ERP Specific Styles */
    .erp-hero {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    
    .erp-hero::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: rgba(0, 119, 200, 0.1);
      border-radius: 50%;
      z-index: 0;
    }
    
    .erp-hero-content {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .erp-logo-container {
      flex: 0 0 300px;
      text-align: center;
      padding: 30px;
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-right: 50px;
    }
    
    .erp-logo-container img {
      max-width: 100%;
      height: auto;
    }
    
    .erp-rating {
      display: flex;
      align-items: center;
      margin: 15px 0;
    }
    
    .stars {
      color: #FFD700;
      margin-right: 10px;
    }
    
    .rating-text {
      font-weight: 600;
      color: #333;
    }
    
    .erp-cta-buttons {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    /* Modules Section */
    .modules-section {
      padding: 60px 0;
      background: #fff;
    }
    
    .modules-tabs {
      display: flex;
      border-bottom: 1px solid #ddd;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .module-tab {
      padding: 12px 25px;
      cursor: pointer;
      border: 1px solid transparent;
      border-bottom: none;
      background: #f8f9fa;
      margin-right: 5px;
      border-radius: 5px 5px 0 0;
      transition: all 0.3s ease;
    }
    
    .module-tab.active {
      background: #fff;
      border-color: #ddd;
      border-bottom: 1px solid #fff;
      color: #0077c8;
      font-weight: 600;
      margin-bottom: -1px;
    }
    
    .module-content {
      display: none;
      padding: 25px;
      background: #fff;
      border: 1px solid #ddd;
      border-top: none;
      border-radius: 0 0 5px 5px;
    }
    
    .module-content.active {
      display: block;
    }
    
    .module-features {
      columns: 2;
      column-gap: 40px;
    }
    
    .module-features li {
      margin-bottom: 10px;
      break-inside: avoid;
    }
    
    /* Comparison Section */
    .comparison-section {
      padding: 60px 0;
      background: #f8f9fa;
    }
    
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .comparison-table th, 
    .comparison-table td {
      padding: 15px;
      text-align: left;
      border: 1px solid #ddd;
    }
    
    .comparison-table th {
      background: #0077c8;
      color: white;
      font-weight: 500;
    }
    
    .comparison-table tr:nth-child(even) {
      background: #f1f1f1;
    }
    
    .pros-cons {
      display: flex;
      gap: 30px;
      margin-top: 40px;
    }
    
    .pros-box, .cons-box {
      flex: 1;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .pros-box {
      background: #f0f9f0;
      border-left: 5px solid #4CAF50;
    }
    
    .cons-box {
      background: #fef0f0;
      border-left: 5px solid #f44336;
    }
    
    .pros-box h3, .cons-box h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .pros-box h3::before {
      content: "✓";
      color: #4CAF50;
      margin-right: 10px;
      font-weight: bold;
    }
    
    .cons-box h3::before {
      content: "✗";
      color: #f44336;
      margin-right: 10px;
      font-weight: bold;
    }
    
    /* Case Studies */
    .case-studies {
      padding: 60px 0;
    }
    
    .case-study-card {
      display: flex;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 30px;
    }
    
    .case-study-image {
      flex: 0 0 40%;
    }
    
    .case-study-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .case-study-content {
      flex: 1;
      padding: 30px;
    }
    
    .case-study-content h3 {
      margin-top: 0;
      color: #0077c8;
    }
    
    .results-list {
      margin: 20px 0;
    }
    
    .results-list li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }
    
    .results-list li::before {
      content: "✓";
      color: #4CAF50;
      position: absolute;
      left: 0;
      font-weight: bold;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .erp-hero-content {
        flex-direction: column;
      }
      
      .erp-logo-container {
        margin-right: 0;
        margin-bottom: 30px;
        flex: 0 0 auto;
      }
      
      .module-features {
        columns: 1;
      }
      
      .case-study-card {
        flex-direction: column;
      }
      
      .case-study-image {
        flex: 0 0 250px;
      }
    }
    
    @media (max-width: 768px) {
      .pros-cons {
        flex-direction: column;
      }
      
      .erp-cta-buttons {
        flex-direction: column;
      }
      
      .erp-cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }

    /* Infor ERP Specific Styles */
.infor-hero {
  background: linear-gradient(135deg, #f0f7fc 0%, #d0e5f5 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.infor-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(0, 119, 200, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.infor-hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.infor-logo-container {
  flex: 0 0 300px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-right: 50px;
}

.infor-logo-container img {
  max-width: 100%;
  height: auto;
}

.infor-rating-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.infor-rating-stars {
  color: #FFD700;
  margin-bottom: 5px;
}

.infor-rating-text {
  font-weight: 600;
  color: #333;
}

.infor-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.infor-feature-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.infor-feature-card:hover {
  transform: translateY(-5px);
}

.infor-feature-icon {
  font-size: 2.5rem;
  color: #0077c8;
  margin-bottom: 15px;
}

.infor-feature-card h3 {
  margin: 10px 0;
  color: #0077c8;
}

.infor-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.infor-industry-tag {
  background: #e1f0fa;
  color: #0077c8;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.infor-modules-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.infor-modules-table th, 
.infor-modules-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.infor-modules-table th {
  background: #0077c8;
  color: white;
  font-weight: 500;
}

.infor-modules-table tr:nth-child(even) {
  background: #f8f9fa;
}

.infor-pros-cons {
  display: flex;
  gap: 30px;
  margin: 40px 0;
}

.infor-pros-card, .infor-cons-card {
  flex: 1;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.infor-pros-card {
  background: #f0f9f0;
  border-left: 5px solid #4CAF50;
}

.infor-cons-card {
  background: #fef0f0;
  border-left: 5px solid #f44336;
}

.infor-pros-card h3, .infor-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.infor-pros-card h3::before {
  content: "✓";
  color: #4CAF50;
  margin-right: 10px;
  font-weight: bold;
}

.infor-cons-card h3::before {
  content: "✗";
  color: #f44336;
  margin-right: 10px;
  font-weight: bold;
}

.infor-pricing-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 30px 0;
  text-align: center;
}

.infor-pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.infor-pricing-feature i {
  color: #0077c8;
  margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .infor-hero-content {
    flex-direction: column;
  }
  
  .infor-logo-container {
    margin-right: 0;
    margin-bottom: 30px;
    flex: 0 0 auto;
  }
  
  .infor-pros-cons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .infor-features-grid {
    grid-template-columns: 1fr;
  }
  
  .infor-modules-table {
    display: block;
    overflow-x: auto;
  }
}

/* Hero Section Fixes */
.infor-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.infor-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 800px;
  margin-left: 20px;
}

.infor-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #0077c8;
}

.infor-hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #555;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary {
  background: #0077c8;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: white;
  color: #0077c8;
  border: 2px solid #0077c8;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Timeline Fixes */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0077c8;
  z-index: 1;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 100px;
  z-index: 2;
}

.timeline-icon {
  position: absolute;
  left: 30px;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border: 4px solid #0077c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0077c8;
  font-size: 1.2rem;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  color: #0077c8;
  margin-top: 0;
}

/* Steps Grid Fixes */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
}

.step-card.highlighted {
  border-top: 5px solid #0077c8;
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: #0077c8;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6b00;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .infor-hero-content {
    margin-left: 0;
    text-align: center;
    align-items: center;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-step {
    padding-left: 70px;
  }
  
  .timeline-icon {
    left: 0;
  }
}