.page-contact {
  color: #333333; /* Default dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-contact__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Minimum height for hero section */
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for better text readability */
}

.page-contact__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  color: #ffffff; /* Light text for dark overlay */
}

.page-contact__hero-title {
  font-size: 3em;
  color: #FFCC00; /* Secondary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-contact__hero-button,
.page-contact__method-button,
.page-contact__feedback-button,
.page-contact__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Secondary color for buttons */
  color: #003366; /* Primary color for button text */
  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;
  border: none;
  cursor: pointer;
}

.page-contact__hero-button:hover,
.page-contact__method-button:hover,
.page-contact__feedback-button:hover,
.page-contact__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__feedback-section,
.page-contact__cta-section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for content sections */
  text-align: center;
}

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

.page-contact__methods-container,
.page-contact__faq-container,
.page-contact__feedback-container,
.page-contact__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__methods-title,
.page-contact__faq-title,
.page-contact__feedback-title,
.page-contact__cta-title {
  font-size: 2.5em;
  color: #003366; /* Primary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__methods-intro,
.page-contact__faq-intro,
.page-contact__feedback-description,
.page-contact__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-contact__method-card,
.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover,
.page-contact__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__method-icon {
  width: 250px; /* Ensure images are not small icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__method-card-title,
.page-contact__faq-question {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__method-card-description,
.page-contact__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__faq-item {
  text-align: left;
}

.page-contact__faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-size: 1.4em;
  color: #003366;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFCC00;
}

.page-contact__faq-question.active::after {
  content: '-';
}

.page-contact__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
  padding-bottom: 0;
}

.page-contact__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-contact__feedback-section {
  background-color: #003366; /* Primary color background */
  color: #ffffff;
}

.page-contact__feedback-title {
  color: #FFCC00;
}

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

.page-contact__cta-section {
  background-color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__hero-description {
    font-size: 1.1em;
  }
  .page-contact__methods-title,
  .page-contact__faq-title,
  .page-contact__feedback-title,
  .page-contact__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button,
  .page-contact__method-button,
  .page-contact__feedback-button,
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__methods-title,
  .page-contact__faq-title,
  .page-contact__feedback-title,
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__method-grid,
  .page-contact__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__hero-image,
  .page-contact__method-icon,
  .page-contact__faq-item img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__methods-title,
  .page-contact__faq-title,
  .page-contact__feedback-title,
  .page-contact__cta-title {
    font-size: 1.5em;
  }
  .page-contact__method-card-title,
  .page-contact__faq-question {
    font-size: 1.5em;
  }
  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__feedback-section,
  .page-contact__cta-section {
    padding: 40px 15px;
  }
}