.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.custom-card {
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background: #fff;
  width: 100%;
}

.card-image {
  width: 200px;
  height: 133px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 85px;
}
.card-image img {
  max-width: 100%;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 32px 0;
}

.card-body {
  background-color: #F8F8F8;
  padding: 15px;
  border-radius: 8px;
}

.card-text {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  padding-top: 35px;
  padding-right: 39px;
  padding-bottom: 35px;
  padding-left: 39px;
}
}

@media (max-width: 1024px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .custom-card {
    max-width: 100%;
    min-height: auto;
  }

  .card-body {
    min-height: auto;
  }
}