.responsive-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #2d3748;
}

.card-description {
  color: #718096;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.card-button {
  background: #4299e1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.card-button:hover {
  background: #3182ce;
}

/* Tablet: Side-by-side layout */
@media screen and (min-width: 768px) {
  .responsive-card {
    display: flex;
    max-width: 600px;
  }
  
  .card-image {
    width: 40%;
    height: auto;
    min-height: 180px;
  }
  
  .card-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Desktop: Enhanced styling */
@media screen and (min-width: 1024px) {
  .responsive-card {
    max-width: 700px;
  }
  
  .card-title {
    font-size: 22px;
  }
  
  .card-description {
    font-size: 16px;
  }
  
  .card-button {
    padding: 12px 24px;
    font-size: 16px;
    align-self: flex-start;
  }
}