/* Sage Intacct-specific styles */
    .sage-intacct-hero {
      background: linear-gradient(135deg, #00a859 0%, #00c4cc 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .sage-intacct-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/sage-intacct-pattern.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .sage-intacct-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .sage-intacct-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .sage-intacct-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .sage-intacct-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .sage-intacct-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;
    }
    
    .sage-intacct-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .sage-intacct-feature-icon {
      font-size: 2.5rem;
      color: #00a859;
      margin-bottom: 15px;
    }
    
    .sage-intacct-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;
    }
    
    .sage-intacct-modules-table th {
      background-color: #00a859;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .sage-intacct-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .sage-intacct-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .sage-intacct-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .sage-intacct-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .sage-intacct-industry-tag {
      background: #e6f7ee;
      color: #00a859;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .sage-intacct-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .sage-intacct-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .sage-intacct-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .sage-intacct-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .sage-intacct-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .sage-intacct-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .sage-intacct-pros-card, .sage-intacct-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .sage-intacct-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .sage-intacct-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .sage-intacct-pros-card h3, .sage-intacct-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .sage-intacct-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .sage-intacct-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .sage-intacct-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .sage-intacct-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .sage-intacct-rating-text {
      font-weight: 600;
    }
    
    .sage-intacct-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .sage-intacct-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .sage-intacct-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #00a859;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .sage-intacct-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 #00c4cc;
    }
    
    .sage-intacct-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .sage-intacct-pricing-feature i {
      color: #00a859;
      margin-right: 10px;
    }
    
    .sage-intacct-editions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .sage-intacct-edition-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border-top: 3px solid #00a859;
    }
    
    .sage-intacct-edition-card h3 {
      color: #00a859;
      margin-top: 0;
    }
    
    /* Animation for financial icon */
    @keyframes pulse-grow {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
    
    .financial-icon {
      animation: pulse-grow 2s infinite;
      color: #00a859;
    }

    /* Sage Intacct-specific styles */
.sage-intacct-hero {
  background: linear-gradient(135deg, #00a859 0%, #00c4cc 100%);
  color: white;
  padding: 60px 0;
  border-radius: 15px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.sage-intacct-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/Images/sage-intacct-pattern.png') no-repeat right center;
  opacity: 0.2;
  z-index: 1;
}

.sage-intacct-hero-content {
  position: relative;
  z-index: 2;
}

.sage-intacct-logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.sage-intacct-logo-container img {
  max-width: 300px;
  height: auto;
}

.sage-intacct-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.sage-intacct-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;
}

.sage-intacct-feature-card:hover {
  transform: translateY(-5px);
}

.sage-intacct-feature-icon {
  font-size: 2.5rem;
  color: #00a859;
  margin-bottom: 15px;
}

.sage-intacct-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;
}

.sage-intacct-modules-table th {
  background-color: #00a859;
  color: white;
  text-align: left;
  padding: 15px;
}

.sage-intacct-modules-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #dddddd;
}

.sage-intacct-modules-table tr:last-child td {
  border-bottom: none;
}

.sage-intacct-modules-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.sage-intacct-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.sage-intacct-industry-tag {
  background: #e6f7ee;
  color: #00a859;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.sage-intacct-testimonials {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}

.sage-intacct-testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.sage-intacct-client-logo {
  height: 50px;
  margin-right: 20px;
  object-fit: contain;
}

.sage-intacct-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .sage-intacct-pros-cons {
    grid-template-columns: 1fr;
  }
  
  .sage-intacct-hero:before {
    width: 100%;
    opacity: 0.1;
  }
}

.sage-intacct-pros-card, .sage-intacct-cons-card {
  padding: 25px;
  border-radius: 10px;
}

.sage-intacct-pros-card {
  background: #e6f7ee;
  border-left: 5px solid #00a86b;
}

.sage-intacct-cons-card {
  background: #fde8e8;
  border-left: 5px solid #e74c3c;
}

.sage-intacct-pros-card h3, .sage-intacct-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.sage-intacct-pros-card h3 i {
  color: #00a86b;
  margin-right: 10px;
}

.sage-intacct-cons-card h3 i {
  color: #e74c3c;
  margin-right: 10px;
}

.sage-intacct-rating-container {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.sage-intacct-rating-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-right: 15px;
}

.sage-intacct-rating-text {
  font-weight: 600;
}

.sage-intacct-implementation-steps {
  counter-reset: step-counter;
  margin: 40px 0;
}

.sage-intacct-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

.sage-intacct-step:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #00a859;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.sage-intacct-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 #00c4cc;
}

.sage-intacct-pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sage-intacct-pricing-feature i {
  color: #00a859;
  margin-right: 10px;
}

.sage-intacct-editions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.sage-intacct-edition-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 3px solid #00a859;
}

.sage-intacct-edition-card h3 {
  color: #00a859;
  margin-top: 0;
}

/* Animation for financial icon */
@keyframes pulse-grow {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.financial-icon {
  animation: pulse-grow 2s infinite;
  color: #00a859;
}

/* Timeline styles from TallyPrime */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  width: 6px;
  background-color: #00a859;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.timeline-step {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 30px;
}

.timeline-step::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: white;
  border: 4px solid #00a859;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-step:nth-child(odd) {
  left: 0;
}

.timeline-step:nth-child(even) {
  left: 50%;
}

.timeline-step:nth-child(odd)::after {
  right: -12px;
}

.timeline-step:nth-child(even)::after {
  left: -12px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #00a859;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  top: 15px;
}

.timeline-step:nth-child(odd) .timeline-icon {
  right: -75px;
}

.timeline-step:nth-child(even) .timeline-icon {
  left: -75px;
}

@media screen and (max-width: 768px) {
  .timeline-line {
    left: 31px;
  }
  
  .timeline-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-step:nth-child(even) {
    left: 0;
  }
  
  .timeline-step::after {
    left: 18px;
  }
  
  .timeline-step:nth-child(odd)::after,
  .timeline-step:nth-child(even)::after {
    left: 18px;
  }
  
  .timeline-step:nth-child(odd) .timeline-icon,
  .timeline-step:nth-child(even) .timeline-icon {
    left: 15px;
    right: auto;
  }
}

/* Steps section styles */
.steps-section {
  background-color: #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: 2px solid #00a859;
  position: relative;
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #00a859;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #00a859;
  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 for CTA */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 168, 89, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 168, 89, 0);
  }
}

/* Disclaimer section */
.disclaimer-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.disclaimer-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer-content h2 {
  color: #00a859;
  margin-top: 0;
}

.disclaimer-content a {
  color: #00a859;
  text-decoration: underline;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  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;
  flex: 1;
}

#accept-cookies {
  background: #00a859;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 20px;
}

#accept-cookies:hover {
  background: #008a4a;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  #accept-cookies {
    margin: 10px 0 0 0;
  }
}