.buy-accent-bar, .rent-accent-bar, .sell-accent-bar {
  position: absolute;
  left: -38px;
  top: 0;
  bottom: 0;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.buy-accent-bar::before,
.rent-accent-bar::before,
.sell-accent-bar::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) skewY(-18deg);
  width: 8px;
  height: 100%;
  border-radius: 16px;
  z-index: 1;
}
.buy-accent-bar::before {
  background: #2563eb;
  box-shadow: 2px 0 8px 0 rgba(37,99,235,0.08);
}
.rent-accent-bar::before {
  background: #f43f5e;
  box-shadow: 2px 0 8px 0 rgba(244,63,94,0.08);
}
.sell-accent-bar::before {
  background: #22c55e;
  box-shadow: 2px 0 8px 0 rgba(34,197,94,0.08);
}
.buy-accent-bar .icon-wrap,
.rent-accent-bar .icon-wrap,
.sell-accent-bar .icon-wrap {
  position: relative;
  z-index: 2;
  background: transparent;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
}
.what-we-do-section {
  width: 100%;
  padding: 24px 0 32px 0;
  background: #fff;
  text-align: center;
}
.what-we-do-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
  color: var(--hr-primary, #3B82F6);
  font-family: inherit;
}
.what-we-do-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.what-we-do-card {
  background: #f8fbff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(59,130,246,0.07);
  padding: 32px 28px 24px 28px;
  min-width: 280px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.what-we-do-card:hover {
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.13);
  transform: translateY(-4px) scale(1.03);
}
.icon-wrap {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-content {
  text-align: left;
  width: 100%;
}
.card-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.card-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}
.what-we-do-card.buy .icon-wrap svg circle { fill: #2563eb; }
.what-we-do-card.rent .icon-wrap svg circle { fill: #f43f5e; }
.what-we-do-card.sell .icon-wrap svg circle { fill: #22c55e; }
@media (max-width: 900px) {
  .what-we-do-section {
    padding: 12px 0 18px 0;
  }
  .what-we-do-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-align: center;
  }
  .what-we-do-cards {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    display: flex;
  }
  .what-we-do-card {
    min-width: 0;
    width: 96vw;
    margin: 0 auto 6px auto;
    padding: 2px 2px 4px 2px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(35,64,142,0.03);
    min-height: 50px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .icon-wrap svg {
    width: 18px;
    height: 18px;
  }
  .card-content h3 {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }
  .card-content p {
    font-size: 0.85rem;
    height: 100px;
    margin: 0;
    line-height: 1.2;
    padding: 0;
  }
  }

  @media (max-width: 900px) {
  .what-we-do-card {
    min-height: auto;
    height: 130px; /* Fixed compact height */
    padding: 12px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(35, 64, 142, 0.05);
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .icon-wrap {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .icon-wrap svg {
    width: 24px;
    height: 24px;
  }

  .card-content {
    text-align: left;
    flex: 1;
  }

  .card-content h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
  }

  .card-content p {
    font-size: 0.78rem;
    line-height: 1.2;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limits paragraph to 3 lines */
    -webkit-box-orient: vertical;
  }
}
