.page-contact {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-contact__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.page-contact__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-contact__hero-button:hover {
  background-color: #e0a53b;
}

.page-contact__options-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.page-contact__options-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__options-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__options-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__option-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__option-icon {
  width: 250px; /* Enforce min size > 200px */
  height: 180px; /* Enforce min size > 200px (adjust ratio for imagery) */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__option-heading {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact__option-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__option-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text for dark button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.page-contact__option-button:hover {
  background-color: #333333;
}

.page-contact__faq-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
  text-align: center;
}

.page-contact__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-contact__faq-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__faq-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-contact__faq-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-contact__faq-link-item {
  display: inline-block;
  background-color: #FFFFFF;
  color: #000000;
  padding: 12px 25px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__faq-link-item:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-contact__cta-section {
  padding: 80px 20px;
  background-color: #000000; /* Dark background */
  color: #FFFFFF;
  text-align: center;
}

.page-contact__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.page-contact__cta-button--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for white button */
}

.page-contact__cta-button--register:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

.page-contact__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for bright button */
}

.page-contact__cta-button--login:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(252, 188, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }

  .page-contact__options-title {
    font-size: 2em;
  }

  .page-contact__options-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__faq-links {
    flex-direction: column;
  }

  .page-contact__cta-title {
    font-size: 2em;
  }

  .page-contact__cta-button {
    margin: 10px 0;
    display: block;
  }

  .page-contact__hero-section,
  .page-contact__options-section,
  .page-contact__faq-section,
  .page-contact__cta-section {
    padding: 40px 15px;
  }

  /* Mobile overflow prevention */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__options-title {
    font-size: 1.8em;
  }

  .page-contact__cta-title {
    font-size: 1.8em;
  }
}