.case-studies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.case-study-card {
  background: #ffffff;
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.case-study-image img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 20px; /* Set to 20px to match the 'Existing Users' cards */
}

.case-study-content p {
  font-size: 18px;
  line-height: 1.4;
  color: #2f2f2f;
  margin-bottom: 30px;
  flex-grow: 1;
}
.cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-wrapper .hs-cta-wrapper {
  width: 100%;
}

.cta-wrapper .hs-cta-wrapper a {
  background-color: #60c3d9;
  color: #512b7f !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
  font-family: inherit;
}

.cta-wrapper .hs-cta-wrapper a:hover {
  background-color: #4db1c6;
