/* SYSPRO-specific styles */
    .syspro-hero {
      background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .syspro-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/syspro-pattern.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .syspro-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .syspro-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .syspro-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .syspro-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .syspro-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;
    }
    
    .syspro-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .syspro-feature-icon {
      font-size: 2.5rem;
      color: #0066cc;
      margin-bottom: 15px;
    }
    
    .syspro-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;
    }
    
    .syspro-modules-table th {
      background-color: #003366;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .syspro-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .syspro-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .syspro-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .syspro-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .syspro-industry-tag {
      background: #e6f2ff;
      color: #003366;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .syspro-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .syspro-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .syspro-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .syspro-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .syspro-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .syspro-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .syspro-pros-card, .syspro-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .syspro-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .syspro-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .syspro-pros-card h3, .syspro-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .syspro-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .syspro-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .syspro-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .syspro-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .syspro-rating-text {
      font-weight: 600;
    }
    
    .syspro-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .syspro-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .syspro-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #003366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .syspro-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 #0066cc;
    }
    
    .syspro-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .syspro-pricing-feature i {
      color: #0066cc;
      margin-right: 10px;
    }
    
    .syspro-editions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .syspro-edition-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border-top: 3px solid #003366;
    }
    
    .syspro-edition-card h3 {
      color: #003366;
      margin-top: 0;
    }
    
    /* Animation for manufacturing icon */
    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .manufacturing-icon {
      animation: rotate 4s linear infinite;
      color: #0066cc;
    }

    /* Additional CSS for new elements */

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #003366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.highlighted {
  border: 2px solid #0066cc;
  position: relative;
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #0066cc;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0066cc;
  z-index: 1;
}

.timeline-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
  z-index: 2;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066cc;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #0066cc;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #003366;
  color: white;
  padding: 15px;
  z-index: 9999;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

#accept-cookies {
  background: white;
  color: #003366;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003366;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0066cc;
  color: white;
}

/* Disclaimer Section */
.disclaimer-section {
  background: #f8f9fa;
  padding: 40px 0;
}

.disclaimer-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline-line {
    left: 25px;
  }
  
  .timeline-step {
    padding-left: 70px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}