.page-contact {
  /* Default body background is white, so use dark text */
  color: #333333;
  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 {
  background-color: #0A2463; /* Primary brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15; /* Subtle background image */
}

.page-contact__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Subtle desaturation for background */
}

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

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary brand color for emphasis */
  line-height: 1.2;
}

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #E3B505; /* Auxiliary brand color for CTA */
  color: #0A2463; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__cta-button:hover {
  background-color: #f0c94b;
  transform: translateY(-2px);
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #0A2463; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505; /* Auxiliary brand color as accent */
  border-radius: 2px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-contact__channels-section,
.page-contact__why-us-section,
.page-contact__faq-preview-section,
.page-contact__feedback-section,
.page-contact__final-cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-contact__channel-card,
.page-contact__feature-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover,
.page-contact__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__channel-icon,
.page-contact__feature-icon {
  width: 100%; /* Ensure images take full card width */
  height: auto;
  max-width: 250px; /* Constrain icon size within card */
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__card-title,
.page-contact__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-contact__card-description,
.page-contact__feature-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-contact__email-address {
  font-weight: bold;
  color: #0A2463;
}

.page-contact__card-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__card-button:hover {
  background-color: #1a3c7c;
}

.page-contact__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-contact__more-faq-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-contact__more-faq-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__more-faq-button:hover {
  background-color: #f0c94b;
}

.page-contact__feedback-section {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
}

.page-contact__feedback-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 30px;
}

.page-contact__feedback-button:hover {
  background-color: #f0c94b;
  transform: translateY(-2px);
}

.page-contact__final-cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.page-contact__final-cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15; /* Subtle background image */
}

.page-contact__final-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%); /* Subtle desaturation for background */
}

.page-contact__final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #E3B505;
  line-height: 1.2;
}

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

.page-contact__final-cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__final-cta-button:hover {
  background-color: #f0c94b;
  transform: translateY(-2px);
}

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

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

  .page-contact__hero-description,
  .page-contact__section-intro,
  .page-contact__card-description,
  .page-contact__feature-description,
  .page-contact__faq-answer,
  .page-contact__final-cta-description {
    font-size: 1em;
  }

  .page-contact__cta-button,
  .page-contact__feedback-button,
  .page-contact__final-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__channel-grid,
  .page-contact__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__channel-card,
  .page-contact__feature-card,
  .page-contact__faq-item {
    padding: 20px;
  }

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

  /* Ensure images do not overflow on mobile */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }

  .page-contact__channel-icon,
  .page-contact__feature-icon {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section,
  .page-contact__final-cta-section {
    padding: 50px 15px;
  }

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

  .page-contact__section-title {
    font-size: 1.6em;
  }

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

  .page-contact__channels-section,
  .page-contact__why-us-section,
  .page-contact__faq-preview-section,
  .page-contact__feedback-section,
  .page-contact__final-cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .page-contact__channel-card,
  .page-contact__feature-card,
  .page-contact__faq-item {
    padding: 15px;
  }
}