/* Engagement Models Section */
.engagement-models-section {
  padding: 80px 24px;
  background-color: white;
}

.engagement-models-container {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.engagement-models-title {
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .engagement-models-title {
    font-size: 2.25rem;
  }
}

.engagement-models-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .engagement-models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.engagement-model-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 40px;
  transition: transform 0.3s ease;
}

.engagement-model-card:hover {
  transform: translateY(-8px);
}

.model-image {
  width: 192px;
  height: 192px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.model-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.model-duration {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2626;
  margin-bottom: 8px;
}

.model-description {
  font-size: 1.125rem;
  color: #374151;
}