.route_accounting .btn-dsd-demo {
  background-color: hsl(264, 74%, 58%);
  color: white;
  margin-right: 10px;
}
.client-section {
  background: #ffffff;
  overflow: hidden; /* ensure we don’t see overflow scrollbars */
  position: relative;
}

.client-title {
  font-size: 1.75rem;
  font-weight: bold;
  /* color: #0c3505; */
}

.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 60px;
  will-change: transform;
  padding: 50px 0px;
}
 .feature_data .tabs input[type="radio"]:checked + label {

  color: hsl(264, 74%, 58%) !important;
}

 .feature_data 
.tabs input[type="radio"]:checked + label:after {
  color: #222222;
  content: "";
  position: relative;
  bottom: 0;
  border-width: 15px 11px 0;
  border-style: solid;
  border-color: hsl(264, 74%, 58%) transparent;
  display: block;
  width: 0;
  top: 8px;
  left: 9px;
}
.logo-track img {
  width: 200px; /* 👈 fixed equal width for all images */
  height: 100px; /* consistent height */
  flex-shrink: 0; /* don’t let flexbox collapse image width */
  object-fit: contain; /* scale inside while keeping aspect ratio */
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-track img:hover {
  /* filter: grayscale(0%); */
}

.compare-cta-block {
  background: linear-gradient(180deg, hsl(264, 74%, 95%) , hsl(264, 74%, 80%));
  padding: 50px 200px;
  text-align: center;
  border-radius: 12px;
}
.compare-cta-block .cta-btn {
  background-color: hsl(264, 74%, 58%);
  color: white;
  font-size: 14px !important;
}
.compare-cta-block  h3 {
 font-size: 24px !important;
 /* color: hsl(264, 74%, 25%) !important; */
}
@media (max-width: 768px) {
  .compare-cta-block {
    padding: 10px;
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.faq-icon {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-icon::after {
  content: "+";
}

.faq-item.active .faq-icon::after {
  content: "×";
  font-size: 26px;
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  font-weight: 400;
  margin: 0;
  padding: 0 24px 5px 24px;
  /* font-size: 15px; */
  color: #374151;
  line-height: 1.6;
}

.faq-answer p:last-of-type {
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 12px;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 16px;
  }

  .faq-answer p {
    font-size: 14px;
    padding: 0 16px 18px 16px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 13px;
    padding: 14px 12px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 12px 14px 12px;
  }
}

.choose-section {
  background-color: #fdfdfd;
}

.choose-section h2 {
  color: #0c274d;
}

.choose-section p {
  line-height: 1.8;
  /* font-size: 1.05rem; */
}

.audience-list .icon {
  flex-shrink: 0;
}

/* subtle separation under right-side rows */
.audience-list {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1rem;
}

.audience-list:last-child {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .choose-section {
    text-align: left;
  }

  .choose-image img {
    width: 100%;
    margin-top: 1rem;
  }
}
