/* Homepage Specific Enhancements */
.homeServices .card-title {
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c; /* Deep neutral */
}

.homeServices .card-text {
  font-size: 15px;
  color: #666; /* High contrast */
}

.heroContainer h2.heroTitle {
  font-size: 36px;
  color: #007acc; /* Dopamine blue */
  margin-bottom: 20px;
}

.heroContainer .ctaButton {
  margin-top: 20px;
}

.heroContainer {
  padding: 100px 20px;
  text-align: center;
  background-color: #f4f5f7; /* Flat neutral background */
  background-image: url('/uploads/herobg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #2c2c2c;
  animation: fadeInSection 1s ease-in-out;
}

.workflowContainer .stepLabel {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.workflowContainer .stepIcon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #007acc;
}

.rmcAboutSection {
  background-color: #f8f9fb;
  color: #2c2c2c;
  padding: 60px 20px;
}

.rmcAboutTitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007acc;
}

.rmcAboutSubtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
}

.rmcAboutText {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  color: #444;
}

.rmcAboutText .highlight {
  color: #007acc;
  font-weight: 600;
}

.ctaButton {
  background-color: #ff6b6b; /* Flat coral */
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.ctaButton:hover {
  background-color: #e85c5c;
  transform: scale(1.05);
}