.why-accurex-section {
  padding: 90px 0;
  background: rgba(248,248,248,1);
}

.why-accurex-content {
  max-width: 520px;
}

.why-accurex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: #dcdfe3;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.why-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(255, 85, 0, 0.08);
  color: #ff5500;
  font-size: 1rem;
  font-weight: 700;
}

.why-card-title {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.why-card-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #555;
}

@media (max-width: 991.98px) {
  .why-accurex-section {
    padding: 70px 0;
  }

  .why-accurex-content {
    max-width: 100%;
  }

  .why-accurex-grid {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .why-accurex-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .why-accurex-section {
    padding: 56px 0;
  }

  .why-card {
    padding: 24px;
    border-radius: 18px;
  }

  .why-card-number {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
}