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