.hero-section {
  margin: 3rem 3.75rem;
}

.hero-content {
  background-color: var(--primary-light-color);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-main-color);
  line-height: 1.3;
}

.hero-title .highlight {
  color: var(--secondary-main-color);
  padding: 0;
}

.hero-text-container {
  padding-left: 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--light-text-color);
  margin: 1rem 0 2rem;
}

.hero-img-container {
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  padding-top: 1rem;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-image {
    margin-top: 2rem;
  }
}
