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