.main-content {
  align-items: center;
  margin-top: 0;
}

.contact__hero {
  position: relative;
}

.contact__hero-carousel {
  height: 45vh;
}

.contact__content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.contact__content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #4a4a4a;
}

.contact__content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}

.contact__content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.contact__content li {
  margin-bottom: 0.5rem;
}

.contact__button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.contact__button {
  display: inline-block;
  background-color: rgb(0, 26, 175);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
  text-transform: uppercase;
  font-size: 0.875rem;
  cursor: pointer;
}

.contact__button-label {
  margin-left: 0.5rem;
}

.contact__button:hover {
  background-color: rgb(0, 20, 137);
}

@media (max-width: 768px) {
  .contact__content {
    padding: 2rem 1.5rem;
  }

  .contact__content h1 {
    font-size: 2rem;
  }

  .contact__button {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .contact__content {
    padding: 1.5rem 1rem;
  }

  .contact__content h1 {
    font-size: 1.8rem;
  }

  .contact__button {
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
  }
}

@media (prefers-color-scheme: dark) {
  .contact__content h1 {
    color: #f8f9fa;
  }

  .contact__content p,
  .contact__content ul {
    color: #dee2e6;
  }
}