.elementor-28762 .elementor-element.elementor-element-5cdaccf3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-705770a3 */.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  padding: 20px;
}

.card {
  flex: 0 1 260px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Adjust as needed for vertical centering */
}

.card-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
}


.card-content {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #222;
  margin: 0 0 8px;
}

.card-content p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .card {
    flex: 0 1 90%;
  }

  .card img {
    height: 150px;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
}/* End custom CSS */