.page-contact {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, main padding from body */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-contact__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-contact__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-contact__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-contact__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-contact__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #FFD36B, #F2C14E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

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

.page-contact__method-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-contact__method-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-contact__method-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B;
}

.page-contact__method-text {
  font-size: 1em;
  margin-bottom: 25px;
  opacity: 0.8;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-contact__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.6);
}

.page-contact__faq-section {
  padding: 40px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-list {
  margin-top: 30px;
}

.page-contact__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-contact__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2C14E;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-contact__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #FFF6D6;
  opacity: 0.8;
}

.page-contact__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-contact__faq-answer a {
  color: #F2C14E;
  text-decoration: none;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

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

  .page-contact__hero-image {
    width: 100%;
    height: auto;
  }

  .page-contact__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-contact__description {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-top: 40px;
    margin-bottom: 30px;
  }

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

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

  .page-contact__method-icon {
    max-width: 150px;
  }

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

  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-contact__faq-answer p {
    padding-bottom: 15px;
  }

  /* Ensure all content area images are responsive */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-content {
    padding: 0 15px;
  }

  .page-contact__main-title {
    font-size: clamp(1.5em, 8vw, 2.2em);
  }

  .page-contact__description {
    font-size: 0.95em;
  }

  .page-contact__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }

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

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

  .page-contact__method-text {
    font-size: 0.9em;
  }

  .page-contact__button {
    padding: 8px 18px;
    font-size: 0.9em;
  }

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