.utility-width-100 {
  width: 100% !important;
}

.utility-aspect-21x9 {
  aspect-ratio: 21/9;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.secondary-section {
  background-color: #f8f9fa;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 900px;
  margin: 0 auto;
}

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

.card-body {
  padding: 2rem;
}

.h4-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.paragraph-sm {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
} 