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

.page-contact__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden; /* To contain the image */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability, NO color change filter */
}

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

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

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA button */
  color: #1A1A2E; /* Dark text for accent button */
  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;
}

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

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__social-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__methods-title,
.page-contact__faq-title,
.page-contact__social-title {
  font-size: 2.5em;
  color: #1A1A2E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

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

.page-contact__method-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card: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 too small */
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #1A1A2E;
  margin-bottom: 15px;
}

.page-contact__card-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #1A1A2E; /* Main color for method buttons */
  color: #FFD700; /* Accent text for main color button */
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__method-button:hover {
  background-color: #0f0f1d;
  color: #ffe033;
}

.page-contact__faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-contact__faq-image {
  width: 600px; /* Ensure image is not too small */
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
}

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

.page-contact__faq-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__social-description {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-contact__social-links {
  text-align: center;
}

.page-contact__social-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #FFD700;
  padding: 10px 25px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-button:hover {
  background-color: #0f0f1d;
  color: #ffe033;
}

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

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

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

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

  .page-contact__method-icon,
  .page-contact__faq-image {
    width: 100%;
    max-width: 400px; /* Constrain max width for mobile */
    height: auto;
  }

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