.ehr-banner {
  max-width: 1041px;
  margin: 0 auto;
}

/*
.logo-section {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}  */

.logo-section {
  display: flex;
  justify-content: center; /* safer than space-between */
  align-items: center;
  flex-wrap: wrap; /* ✅ KEY FIX */
  gap: 25px;
  width: 100%;
  overflow: hidden; /* extra safety */
}

.logo-section div {
  flex: 0 0 18%; /* Desktop: 5 per row */
  display: flex;
  justify-content: center;
}

.logo-section img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .logo-section div {
    flex: 0 0 30%; /* 3 logos per row */
  }

  .logo-section {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .logo-section div {
    flex: 0 0 45%; /* 2 logos per row */
  }

  .logo-section {
    gap: 15px;
  }
}

.logo {
  width: 240px;
  height: 160px;
}

.trusted-sec {
  padding: 60px 0;
}

.integration {
  background: #01557f;
  color: #ffffff;
}

.integration:hover {
  color: #ffffff;
}

.ai-platform {
  background-color: #f1feff;
  padding: 80px 0;
}

.ai-platform-list li {
  font-size: 20px;
  line-height: 24px;
  /* font-family: AvenirNextLTProRegular; */
  color: #444444;
  font-weight: 300;
  margin-bottom: 15px;
}

.ai-platform-list {
  list-style-type: square;
}

.ai-platform-list li::marker {
  color: #28cbc5;
}

.data-verified h3 {
  color: #28cbc5;
  font-family: "AvenirLTProLight";
  font-weight: 300;
  font-size: 32px;
  line-height: 45px;
  margin-top: 24px;
}

.data-verified p {
  font-family: "AvenirLTProLight";
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #444444;
}

.learn-btn a {
  font-family: "AvenirLTProLight";
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  color: #01557f;
  text-decoration: none;
}

.integrate-section {
  padding: 80px 0;
  background: linear-gradient(88.57deg, #1db1b8 -39.39%, #03557e 95.25%);
}

.support-integration {
  background: linear-gradient(
    220deg,
    rgba(211, 240, 255, 0.05) 0%,
    rgba(230, 254, 255, 0.05) 97.64%
  );
  display: flex;
  padding: 15px;
  gap: 20px;
  border-radius: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.support-integration p {
  color: #ffffff;
  font-family: "AvenirLTProLight";
  align-items: center;
  margin-bottom: 0px;
}

.table-sections {
  padding: 60px 0;
}

.integrate-section .row {
  align-items: center;
}

.feature-table {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* max-width: 980px;
            margin: 0 auto; */
  width: 100%;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* text-align: center; */
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "AvenirLTProLight";
  color: #4b5563;
  background: linear-gradient(220deg, #d3f0ff 0%, #e6feff 97.64%);
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  font-size: 0.875rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.table-row:last-child {
  border-bottom: none;
}

.row-feature {
  font-weight: 500;
  color: #1f2937;
}

.row-cell {
  color: #4b5563;
}

.data-power {
  background: #79dfdb;
  padding: 60px 0;
}

.data-power h3 {
  font-family: "AvenirLTProLight";
  font-weight: 300;
  font-size: 24px;
  line-height: 42px;
  color: #01557f;
  margin: 20px 0 10px 0;
}

.data-power p {
  font-family: "AvenirLTProLight";
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #444444;
}

.data-power .learn-btn a {
  font-size: 18px;
  color: #1db1b8;
  font-family: "AvenirLTProLight";
  font-weight: 300;
}
.map-section {
  background: linear-gradient(88.57deg, #1db1b8 -39.39%, #03557e 95.25%);
  padding: 80px 0;
}
.map-section .row {
  display: flex;
  align-items: center;
}
.form-section {
  padding: 60px 0;
}
/* FAQ Section Styles */
.faq-part {
  background: #f1feff;
  padding: 80px 0;
}
.faq-container {
  max-width: 64rem;
  margin: 0 auto;
  margin-top: 2rem;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 2rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #1f2937;
  background-color: #ffffff; /* Default white background */
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb; /* Slightly different hover color */
}

.faq-item.active {
  border: 1px solid #60a5fa; /* Blue border for active item */
}

.faq-item.active .faq-question {
  background-color: transparent;
  padding-bottom: 0px;
}
.faq-question .toggle-icon {
  font-size: 1.5rem;
  font-weight: 600;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #4b5563;
}
.faq-item.active .faq-question p {
  color: #01557f;
  font-family: AvenirNextLTProRegular;
  font-weight: 300;
  font-size: 24px;
}
.faq-question p {
  margin-bottom: 0px;
  color: #444444;
  font-family: AvenirNextLTProRegular;
  font-weight: 300;
  font-size: 24px;
}
.faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 1rem;
}
@media (min-width: 768px) {
  .table-header {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    font-size: 1rem;
  }

  .table-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    font-size: 1rem;
  }

  .header-whitespace,
  .cell-whitespace {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1024px) {
  .table-header {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .table-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-whitespace,
  .cell-whitespace {
    grid-column: span 1 / span 1;
  }
}
