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

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

.page-contact__hero-section {
  background-color: #1A1A1A; /* Dark background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact__hero-title {
  font-size: 3.2em;
  color: #DAA520;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-contact__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

.page-contact__contact-methods-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
  width: 100%; /* Ensure icon takes appropriate space */
  height: auto;
  max-width: 150px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #DAA520;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-contact__method-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #DAA520;
}

.page-contact__method-button:hover {
  background-color: #c4911c;
  color: #ffffff;
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  color: #ffffff;
  text-align: center;
}

.page-contact__faq-section .page-contact__section-title {
  color: #DAA520;
}

.page-contact__faq-section .page-contact__section-description {
  color: #f0f0f0;
}

.page-contact__faq-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-contact__faq-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-contact__faq-text-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-contact__faq-subtitle {
  font-size: 2em;
  color: #DAA520;
  margin-bottom: 20px;
}

.page-contact__faq-paragraph {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-contact__faq-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #DAA520;
}

.page-contact__faq-button:hover {
  background-color: #c4911c;
  color: #ffffff;
}

.page-contact__feedback-section {
  padding: 60px 0;
  background-color: #f0f0f0;
  text-align: center;
}

.page-contact__feedback-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #DAA520;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #1A1A1A;
}

.page-contact__feedback-button:hover {
  background-color: #333333;
  color: #DAA520;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 2.8em;
  }
  .page-contact__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__faq-content {
    flex-direction: column;
  }
  .page-contact__faq-text-content {
    text-align: center;
    max-width: 100%;
  }
  .page-contact__faq-image, .page-contact__method-icon, .page-contact__hero-image {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  /* Mobile content area images must be constrained */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__method-button, .page-contact__faq-button, .page-contact__feedback-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}