.page-contact {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #1A202C;
}

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

.page-contact__hero-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-contact__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-contact__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__hero-button:hover {
  background-color: #e6c200;
  color: #0d121c;
}

.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__feedback-section,
.page-contact__commitment-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #cccccc;
}

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

.page-contact__method-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-contact__method-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-contact__method-description a {
  color: #FFD700;
  text-decoration: none;
}

.page-contact__method-description a:hover {
  text-decoration: underline;
}

.page-contact__method-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-contact__method-button:hover {
  background-color: #e6c200;
  color: #0d121c;
}

.page-contact__faq-image {
  display: block;
  margin: 0 auto 50px auto;
  width: 800px; /* Example size, ensures >200px */
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-contact__faq-category {
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 30px;
}

.page-contact__faq-category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-contact__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.page-contact__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.page-contact__faq-answer.active {
  max-height: 500px; /* Sufficiently large for content */
  opacity: 1;
  margin-top: 15px;
}

.page-contact__feedback-image {
  display: block;
  margin: 0 auto 50px auto;
  width: 800px; /* Example size, ensures >200px */
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.page-contact__feedback-button,
.page-contact__feedback-button:visited {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__feedback-button:hover {
  background-color: #e6c200;
  color: #0d121c;
}

.page-contact__commitment-section .page-contact__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #cccccc;
  text-align: justify;
  margin-top: 30px;
}

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

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

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px;
  }

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

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

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

  .page-contact__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-contact__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-contact__methods-section,
  .page-contact__faq-section,
  .page-contact__feedback-section,
  .page-contact__commitment-section {
    padding: 60px 0;
  }

  .page-contact__method-card {
    padding: 25px;
  }

  .page-contact__method-title {
    font-size: 1.5em;
  }

  .page-contact__method-description {
    font-size: 0.95em;
  }

  .page-contact__method-icon {
    width: 180px;
    height: 180px;
  }

  .page-contact__faq-category {
    padding: 25px;
  }

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

  .page-contact__faq-question {
    font-size: 1.1em;
  }

  .page-contact__faq-answer {
    font-size: 0.95em;
  }

  .page-contact__faq-image,
  .page-contact__feedback-image {
    width: 100%;
    height: auto;
  }

  /* Ensure images in content areas are responsive and don't overflow */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

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

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

  .page-contact__hero-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  .page-contact__method-card {
    padding: 20px;
  }

  .page-contact__method-title {
    font-size: 1.3em;
  }

  .page-contact__faq-question {
    font-size: 1em;
  }

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