html,body {
        overflow-x: hidden!important
    }

.accessibility-heading{
    font-size: 62px;
}

.why-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  background: #fff;
}
.highlight{
    font-size:28px;
    font-weight:600;
    color: #006375;
}

.why-icon {
  width: 40px;
  height: 40px;
    display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 18px;
}
.why-card:hover {
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
.why-card h3{
    font-weight:600;
    margin-bottom:2rem;
}
/* ===== SECTION ===== */
.section {
  padding: 64px 0;
}

/* ===== CARD ===== */
/* ===== CARD DEFAULT ===== */
.compliance-card {
  height: 100%;
  border: 1px solid gray; /* invisible by default */
  border-radius: 14px;
  padding: 24px;
  background: #ffffff;
  
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ===== CARD HOVER ===== */
.compliance-card:hover {
  border-color: #2563eb; /* blue border on hover */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== ICON DEFAULT (NO BORDER) ===== */
.compliance-icon {
  width: 42px;
  height: 42px;
  border: none; /* remove icon border */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 20px;
}

.pt-box-header h3 {
    background: linear-gradient(to right, #2DA9D3 0%, #49CDB2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 20px;
}
.pt-box-header.collapsed h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #02a9e9;
    font-weight: 600;
    font-family: 'Inter';
    font-size: 20px;
    color: #101010;
    line-height: 170%;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/* ===== TEXT ===== */
.compliance-card h3 {
  font-weight: 600;
  margin-bottom: 8px;
}

.compliance-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}/* ===== SECTION ===== */


/* Center the list */
.benefits-wrapper {
  max-width: 720px;
}

/* ===== ITEM ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

/* ===== ICON ===== */
.benefit-icon {
  width: 40px;
  height: 40px;
  background: #eef2f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  flex-shrink: 0;
  padding: 7px;
}

/* ===== TEXT ===== */
.benefit-item h3 {
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .h2-heading{
    margin:1rem;
}

  .benefits-wrapper {
    max-width: 100%;
  }
}

