.service-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.service-info {
  flex: 1;
}

.service-info h2 {
  font-family: 'Merriweather', serif;
  color: var(--primary-yellow);
  margin-bottom: 0.5rem;
}

.service-info p {
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif; /* or your chosen body font */
}

.learn-more-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: var(--blue-bright);
  color: var(--text-light);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
  background-color: var(--blue-cool);
}

.service-image {
  flex: 1;
}

.service-image img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 200px; /* adjust as needed */
}

/* Responsive: stack on smaller screens */
@media (max-width: 700px) {
  .service-card {
    flex-direction: column;
  }
  .service-image img {
    height: auto;
    width: 100%;
  }
}