/* Odoo-specific styles */
    .odoo-hero {
      background: linear-gradient(135deg, #714B67 0%, #A267AC 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .odoo-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/odoo-pattern.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .odoo-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .odoo-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .odoo-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .odoo-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .odoo-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;
    }
    
    .odoo-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .odoo-feature-icon {
      font-size: 2.5rem;
      color: #A267AC;
      margin-bottom: 15px;
    }
    
    .odoo-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;
    }
    
    .odoo-modules-table th {
      background-color: #714B67;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .odoo-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .odoo-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .odoo-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .odoo-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .odoo-industry-tag {
      background: #F0E4EF;
      color: #714B67;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .odoo-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .odoo-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .odoo-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .odoo-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .odoo-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .odoo-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .odoo-pros-card, .odoo-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .odoo-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .odoo-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .odoo-pros-card h3, .odoo-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .odoo-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .odoo-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .odoo-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .odoo-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .odoo-rating-text {
      font-weight: 600;
    }
    
    .odoo-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .odoo-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .odoo-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #714B67;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .odoo-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 #A267AC;
    }
    
    .odoo-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .odoo-pricing-feature i {
      color: #A267AC;
      margin-right: 10px;
    }
    
    .odoo-editions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .odoo-edition-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }
    
    .odoo-edition-card.popular {
      border: 2px solid #A267AC;
    }
    
    .odoo-edition-card.popular:after {
      content: "Most Popular";
      position: absolute;
      top: 15px;
      right: -30px;
      background: #A267AC;
      color: white;
      padding: 5px 30px;
      transform: rotate(45deg);
      font-size: 0.8rem;
      font-weight: bold;
    }
    
    .odoo-edition-name {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #714B67;
    }
    
    .odoo-edition-price {
      font-size: 2rem;
      font-weight: 700;
      margin: 20px 0;
      color: #333;
    }
    
    .odoo-edition-price span {
      font-size: 1rem;
      font-weight: normal;
      color: #666;
    }

    /* Odoo-specific styles */
.odoo-hero {
  background: linear-gradient(135deg, #714B67 0%, #A267AC 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.odoo-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/Images/odoo-pattern.png') no-repeat right center;
  opacity: 0.2;
  z-index: 1;
}

.odoo-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.odoo-logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.odoo-logo-container img {
  max-width: 300px;
  height: auto;
}

.odoo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.odoo-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;
}

.odoo-feature-card:hover {
  transform: translateY(-5px);
}

.odoo-feature-icon {
  font-size: 2.5rem;
  color: #A267AC;
  margin-bottom: 15px;
}

.odoo-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;
}

.odoo-modules-table th {
  background-color: #714B67;
  color: white;
  text-align: left;
  padding: 15px;
}

.odoo-modules-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #dddddd;
}

.odoo-modules-table tr:last-child td {
  border-bottom: none;
}

.odoo-modules-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.odoo-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.odoo-industry-tag {
  background: #F0E4EF;
  color: #714B67;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.odoo-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .odoo-pros-cons {
    grid-template-columns: 1fr;
  }
  
  .odoo-hero:before {
    width: 100%;
    opacity: 0.1;
  }
}

.odoo-pros-card, .odoo-cons-card {
  padding: 25px;
  border-radius: 10px;
}

.odoo-pros-card {
  background: #e6f7ee;
  border-left: 5px solid #00a86b;
}

.odoo-cons-card {
  background: #fde8e8;
  border-left: 5px solid #e74c3c;
}

.odoo-pros-card h3, .odoo-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.odoo-pros-card h3 i {
  color: #00a86b;
  margin-right: 10px;
}

.odoo-cons-card h3 i {
  color: #e74c3c;
  margin-right: 10px;
}

.odoo-rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.odoo-rating-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-right: 15px;
}

.odoo-rating-text {
  font-weight: 600;
}

.odoo-implementation-steps {
  counter-reset: step-counter;
  margin: 40px 0;
}

.odoo-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

.odoo-step:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #714B67;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.odoo-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 #A267AC;
}

.odoo-pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.odoo-pricing-feature i {
  color: #A267AC;
  margin-right: 10px;
}

.odoo-editions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.odoo-edition-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.odoo-edition-card.popular {
  border: 2px solid #A267AC;
}

.odoo-edition-card.popular:after {
  content: "Most Popular";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #A267AC;
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
}

.odoo-edition-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #714B67;
}

.odoo-edition-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
  color: #333;
}

.odoo-edition-price span {
  font-size: 1rem;
  font-weight: normal;
  color: #666;
}

/* Additional styles for new elements */
.steps-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.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;
}

.step-card.highlighted {
  border-top: 5px solid #A267AC;
  transform: scale(1.05);
}

.step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #A267AC;
  margin-bottom: 15px;
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #A267AC;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.disclaimer-section {
  background: #f8f9fa;
  padding: 40px 0;
  margin-top: 60px;
}

.disclaimer-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .odoo-hero {
    padding: 60px 0;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card.highlighted {
    transform: none;
  }
  
  .odoo-step {
    padding-left: 60px;
  }
  
  .odoo-step:before {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}