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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  color: #ffffff;
  text-align: center;
}

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

.page-contact__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.page-contact__hero-content {
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

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

.page-contact__hero-button,
.page-contact__method-button,
.page-contact__faq-button,
.page-contact__commitment-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E59; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact__hero-button:hover,
.page-contact__method-button:hover,
.page-contact__faq-button:hover,
.page-contact__commitment-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  color: #0d1e3f;
}

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

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__commitment-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.page-contact__methods-section {
  background-color: #ffffff;
}

.page-contact__faq-section {
  background-color: #f0f4f8; /* Light blue-gray for contrast */
}

.page-contact__commitment-section {
  background-color: #1A2E59; /* Dark blue background */
  color: #ffffff;
}

.page-contact__methods-title,
.page-contact__faq-title,
.page-contact__commitment-title {
  font-size: 2.2em;
  color: #1A2E59; /* Dark blue for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__commitment-title {
  color: #FFD700; /* Gold for title on dark background */
}

.page-contact__methods-intro,
.page-contact__faq-intro,
.page-contact__commitment-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__commitment-description {
  color: #f0f0f0;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

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

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

.page-contact__method-icon {
  width: 250px; /* Minimum 200px */
  height: 200px; /* Minimum 200px */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__method-name {
  font-size: 1.6em;
  color: #1A2E59;
  margin-bottom: 15px;
}

.page-contact__method-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-contact__email-link {
  color: #1A2E59;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__email-link:hover {
  color: #FFD700;
}

.page-contact__faq-accordion {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-contact__faq-question {
  font-size: 1.15em;
  color: #1A2E59;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  position: relative;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-contact__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-contact__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 0 20px 20px;
}

.page-contact__faq-answer p {
  margin-bottom: 10px;
}

.page-contact__faq-link {
  color: #1A2E59;
  text-decoration: underline;
  font-weight: bold;
}

.page-contact__faq-link:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-contact__method-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }

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

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

  .page-contact__hero-button,
  .page-contact__method-button,
  .page-contact__faq-button,
  .page-contact__commitment-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__methods-title,
  .page-contact__faq-title,
  .page-contact__commitment-title {
    font-size: 1.8em;
  }

  .page-contact__methods-intro,
  .page-contact__faq-intro,
  .page-contact__commitment-description {
    font-size: 0.95em;
  }

  .page-contact__method-icon {
    width: 200px; /* Minimum 200px */
    height: 150px; /* Minimum 200px, but scaled down proportionally */
  }

  .page-contact__method-name {
    font-size: 1.4em;
  }

  /* Ensure all images within .page-contact are responsive and do not cause overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}