.who-we-are-section {
  padding: 80px 20px;
  background-color: #fef6f7;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #BF2133;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.title-line {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  gap: 50px;
  position: relative;
}

.title-line::before,
.title-line::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #BF2133;
  display: block;
}

.title-line .dot {
  width: 6px;
  height: 6px;
  background-color: #BF2133;
  border-radius: 50%;
}

.section-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #000;
}

.cards-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1260px;
  margin: 0 auto;
}

.info-card {
  width: 296px;
  height: 380.77px;
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.line-top,
.line-bottom {
  width: 236.93px;
  height: 9.77px;
  background-color: #BF2133;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.line-top {
  top: 0;
}

.line-bottom {
  bottom: 0;
}

.info-card img {
  width: 65.35px;
  height: 67px;
  margin: 30px 0 20px;
}

.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  text-transform: capitalize;
}

.info-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
  color: #000;
  padding: 0 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .cards-grid {
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 90%;
    max-width: 320px;
  }

  .line-top,
  .line-bottom {
    width: 80%;
  }

  .section-description {
    padding: 0 15px;
  }
}
