.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.fmpro-support {
  padding: 120px 0 100px;
  /* Added 20px more padding to the top */
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form {
  grid-template-columns: 1fr;
}

/* CARD (with shadow effect) */

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* Shadow effect added */
  transition: box-shadow 0.3s ease-in-out;
  /* Smooth transition for shadow on hover */
}

/* Hover effect on card */

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  /* Slightly more pronounced shadow on hover */
}

/* Mobile-specific card adjustments */

@media (max-width: 768px) {
  .card {
    padding: 15px;
  }
}

/* Reduced space between the paragraph and the title */

.fmpro-text p {
  margin-bottom: 20px;
  /* Reduced margin from 35px to 20px */
}

/* Increased space between the title and the cards */

.features {
  padding: 100px 0 80px;
  /* Increased the bottom padding */
}

.features h2 {
  margin-bottom: 50px;
  /* Increased space below the title */
}

a {
  text-decoration: none;
}
