.page-contact {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensures 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: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(26, 32, 44, 0.8));
  min-height: 500px;
}

.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: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 3.2em;
  color: #D4AF37;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

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

.page-contact__hero-button,
.page-contact__card-button,
.page-contact__cta-button {
  display: inline-block;
  background-color: #D4AF37;
  color: #1A202C;
  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__card-button:hover,
.page-contact__cta-button:hover {
  background-color: #e1c773;
  transform: translateY(-3px);
}

.page-contact__section-title {
  font-size: 2.8em;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.page-contact__channels-section {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-contact__channel-card {
  background-color: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.page-contact__channel-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-contact__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-contact__email-address,
.page-contact__phone-number {
  font-size: 1.1em;
  font-weight: bold;
  color: #D4AF37;
  margin-bottom: 20px;
}

.page-contact__faq-section {
  padding: 80px 0;
  background-color: #111;
}

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

.page-contact__faq-item {
  background-color: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-contact__faq-item:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

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

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

.page-contact__faq-item.active .page-contact__faq-question::after {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

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

.page-contact__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.page-contact__cta-text {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px);
  }
  .page-contact__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button,
  .page-contact__card-button,
  .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-contact__channels-section,
  .page-contact__faq-section,
  .page-contact__commitment-section {
    padding: 60px 0;
  }
  .page-contact__channels-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-card {
    padding: 25px;
  }
  .page-contact__channel-icon {
    width: 200px;
    height: 150px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__faq-question {
    font-size: 1.3em;
  }
  .page-contact__faq-answer {
    font-size: 0.95em;
  }
  .page-contact__cta-text {
    font-size: 1.2em;
  }
  /* Mobile content area image constraint */
  .page-contact img {
    max-width: 100%;
    height: auto;
  }
  .page-contact__channel-icon {
    width: 100%; /* Ensure channel icons also respect max-width */
    max-width: 200px; /* Example: constrain max size for smaller icons */
    height: auto;
  }
  .page-contact__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.6em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__hero-button,
  .page-contact__card-button,
  .page-contact__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
  }
  .page-contact__cta-text {
    font-size: 1em;
  }
}