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

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

.page-contact-us__hero-section {
  padding-top: 10px; /* Small top padding to avoid header overlap */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-contact-us__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-contact-us__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-contact-us__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2C14E; /* Main accent color */
  letter-spacing: 1px;
}

.page-contact-us__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E5E5E5;
}

.page-contact-us__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact-us__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #E5E5E5;
}

.page-contact-us__contact-form-section {
  background-color: #111111; /* Card BG color */
  padding: 60px 0;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.page-contact-us__form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.page-contact-us__form-image {
  max-width: 45%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-contact-us__form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 30px;
  background-color: #0A0A0A;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-contact-us__form-group {
  margin-bottom: 20px;
}

.page-contact-us__form-label {
  display: block;
  margin-bottom: 8px;
  color: #F2C14E;
  font-weight: bold;
}

.page-contact-us__form-input,
.page-contact-us__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #3A2A12;
  border-radius: 5px;
  background-color: #111111;
  color: #FFF6D6;
  font-size: 1em;
  box-sizing: border-box;
}

.page-contact-us__form-input::placeholder,
.page-contact-us__form-textarea::placeholder {
  color: #888;
}

.page-contact-us__submit-button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for contrast */
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.page-contact-us__submit-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%); /* Lighter hover */
  transform: translateY(-2px);
}

.page-contact-us__faq-section {
  padding: 60px 0;
  margin-top: 40px;
}

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

.page-contact-us__faq-item {
  background-color: #111111; /* Card BG color */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-contact-us__faq-question {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-contact-us__faq-answer {
  font-size: 1em;
  color: #E5E5E5;
}

.page-contact-us__faq-answer a {
  color: #FFD36B;
  text-decoration: none;
}

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

.page-contact-us__button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-us__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-contact-us__button--primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  transform: translateY(-2px);
}

.page-contact-us__button--secondary {
  background-color: #3A2A12; /* Border color as secondary button background */
  color: #F2C14E;
  border: 1px solid #F2C14E;
}

.page-contact-us__button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

.page-contact-us__cta-section {
  background-color: #111111; /* Card BG color */
  padding: 60px 0;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.page-contact-us__cta-content {
  text-align: center;
  margin-bottom: 30px;
}

.page-contact-us__cta-title {
  font-size: 2.8em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact-us__cta-description {
  font-size: 1.1em;
  color: #E5E5E5;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-contact-us__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-contact-us__cta-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

@media (max-width: 768px) {
  .page-contact-us__hero-section {
    margin-bottom: 30px;
  }

  .page-contact-us__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-contact-us__intro-text,
  .page-contact-us__description,
  .page-contact-us__faq-answer {
    font-size: 0.95em;
  }

  .page-contact-us__section-title {
    font-size: 2em;
  }

  .page-contact-us__form-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .page-contact-us__form-image {
    max-width: 100%;
    width: 100%; /* Ensure content images are not smaller than 200px and responsive */
    height: auto;
  }

  .page-contact-us__form {
    max-width: 100%;
    width: 100%;
    padding: 20px;
  }

  .page-contact-us__faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-contact-us__cta-title {
    font-size: 2em;
  }

  .page-contact-us__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact-us__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-contact-us__cta-image {
    max-width: 100%;
    width: 100%; /* Ensure content images are not smaller than 200px and responsive */
    height: auto;
  }

  /* Mobile content area image constraint */
  .page-contact-us img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all content area images are at least 200px wide/high */
.page-contact-us img:not(.page-contact-us__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Specific styles for buttons to ensure WCAG AA contrast */
.page-contact-us__submit-button,
.page-contact-us__button--primary {
  color: #111111; /* Dark text for light gradient background */
}

.page-contact-us__button--secondary {
  color: #F2C14E; /* Light text for dark background */
}

.page-contact-us__button--secondary:hover {
  color: #111111; /* Dark text for light hover background */
}