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