    /* IFS-specific styles */
    .ifs-hero {
      background: linear-gradient(135deg, #003366 0%, #0099ff 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .ifs-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/ifs-network.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .ifs-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .ifs-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .ifs-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .ifs-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .ifs-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;
    }
    
    .ifs-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .ifs-feature-icon {
      font-size: 2.5rem;
      color: #0099ff;
      margin-bottom: 15px;
    }
    
    .ifs-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;
    }
    
    .ifs-modules-table th {
      background-color: #003366;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .ifs-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .ifs-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .ifs-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .ifs-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .ifs-industry-tag {
      background: #e6f2ff;
      color: #003366;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .ifs-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .ifs-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .ifs-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .ifs-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .ifs-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .ifs-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .ifs-pros-card, .ifs-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .ifs-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .ifs-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .ifs-pros-card h3, .ifs-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .ifs-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .ifs-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .ifs-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .ifs-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .ifs-rating-text {
      font-weight: 600;
    }
    
    .ifs-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .ifs-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .ifs-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;
    }
    
    .ifs-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;
    }
    
    .ifs-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .ifs-pricing-feature i {
      color: #0099ff;
      margin-right: 10px;
    }

    /* Additional CSS for new elements from TallyPrime page */

/* Steps Section */
.steps-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin: 40px 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: 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 #0099ff;
  position: relative;
}

.highlight-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #0099ff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #003366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Timeline */
.timeline-container {
  position: relative;
  padding-left: 50px;
  margin: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0099ff;
  z-index: 1;
}

.timeline-step {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.timeline-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #0099ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0099ff;
  font-size: 1.2rem;
  z-index: 2;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Disclaimer Section */
.disclaimer-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  margin: 40px 0;
}

.disclaimer-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer-content h2 {
  color: #003366;
  margin-top: 0;
}

.disclaimer-content a {
  color: #0099ff;
  text-decoration: none;
}

.disclaimer-content a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #003366;
  color: white;
  padding: 15px;
  z-index: 99999;
}

.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-grow: 1;
}

.cookie-banner-content a {
  color: #0099ff;
  text-decoration: none;
}

.cookie-banner-content a:hover {
  text-decoration: underline;
}

#accept-cookies {
  background: #0099ff;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

#accept-cookies:hover {
  background: #0077cc;
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 153, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 153, 255, 0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .timeline-container {
    padding-left: 30px;
  }
  
  .timeline-icon {
    left: -30px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  #accept-cookies {
    margin: 10px 0 0 0;
  }
}