/* Compass-specific styles */
    .compass-hero {
      background: linear-gradient(135deg, #003366 0%, #0099ff 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .compass-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;
    }
    
    .compass-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .compass-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .compass-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .compass-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .compass-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;
    }
    
    .compass-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .compass-feature-icon {
      font-size: 2.5rem;
      color: #0099ff;
      margin-bottom: 15px;
    }
    
    .compass-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;
    }
    
    .compass-modules-table th {
      background-color: #003366;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .compass-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .compass-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .compass-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .compass-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .compass-industry-tag {
      background: #e6f2ff;
      color: #003366;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .compass-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .compass-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .compass-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .compass-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .compass-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .compass-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .compass-pros-card, .compass-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .compass-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .compass-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .compass-pros-card h3, .compass-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .compass-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .compass-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .compass-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .compass-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .compass-rating-text {
      font-weight: 600;
    }
    
    .compass-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .compass-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .compass-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;
    }
    
    .compass-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 #0099ff;
    }
    
    .compass-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .compass-pricing-feature i {
      color: #0099ff;
      margin-right: 10px;
    }