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

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__hero-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #0056B3;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain image wrapper */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__button {
  display: inline-block;
  background-color: #FFD700; /* Gold auxiliary color */
  color: #0056B3; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-contact__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-contact__button--secondary {
  background-color: #0056B3;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #004085;
  transform: translateY(-3px);
}

.page-contact__methods-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-contact__methods-title {
  font-size: 2.5em;
  color: #0056B3;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__methods-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__method-card {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
}

.page-contact__method-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__method-heading {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-contact__method-text {
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__social-links .page-contact__social-button {
  margin: 0 5px;
}

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

.page-contact__faq-title {
  font-size: 2.5em;
  color: #0056B3;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-contact__faq-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-contact__faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__get-started-section {
  padding: 80px 20px;
  background-color: #0056B3; /* Main blue color */
  color: #ffffff;
  text-align: center;
}

.page-contact__get-started-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold auxiliary color */
}

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

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

  .page-contact__hero-description,
  .page-contact__methods-intro,
  .page-contact__faq-description,
  .page-contact__get-started-description {
    font-size: 1em;
  }

  .page-contact__methods-title,
  .page-contact__faq-title,
  .page-contact__get-started-title {
    font-size: 2em;
  }

  .page-contact__hero-section,
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__get-started-section {
    padding: 40px 15px;
  }

  .page-contact__button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

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

  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-contact__hero-image,
  .page-contact__method-icon,
  .page-contact__faq-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}