.page-contact-us {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-contact-us__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 40px;
}

.page-contact-us__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-contact-us__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-contact-us__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact-us__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-contact-us__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-contact-us__cta-button {
  display: inline-block;
  background-color: #000000; /* Default button color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-contact-us__cta-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-contact-us__cta-button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
}

.page-contact-us__cta-button--primary:hover {
  background-color: #e0a53b;
}

.page-contact-us__cta-button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
}

.page-contact-us__cta-button--secondary:hover {
  background-color: #333333;
}

.page-contact-us__cta-button--submit {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

.page-contact-us__cta-button--submit:hover {
  background-color: #e0a53b;
}

/* Channels Section */
.page-contact-us__channels-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-contact-us__channel-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-contact-us__channel-icon {
  width: 250px; /* Min 200px */
  height: 250px; /* Min 200px */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact-us__channel-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact-us__channel-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

/* Form Section */
.page-contact-us__form-section {
  padding: 60px 0;
}

.page-contact-us__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.page-contact-us__form-input,
.page-contact-us__form-textarea {
  width: calc(100% - 24px); /* Account for padding */
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  color: #333333;
  background-color: #f0f0f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__form-input:focus,
.page-contact-us__form-textarea:focus {
  border-color: #FCBC45;
  box-shadow: 0 0 8px rgba(252, 188, 69, 0.3);
  outline: none;
}

.page-contact-us__form-textarea {
  resize: vertical;
}

.page-contact-us__form-note {
  text-align: center;
  font-size: 0.9em;
  color: #777777;
  margin-top: 20px;
}

.page-contact-us__form-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-contact-us__form-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-contact-us__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-contact-us__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-contact-us__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact-us__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-contact-us__faq-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

/* Additional Support Section */
.page-contact-us__additional-support-section {
  padding: 60px 0;
}

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

.page-contact-us__resource-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-contact-us__resource-icon {
  width: 250px; /* Min 200px */
  height: 250px; /* Min 200px */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact-us__resource-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact-us__resource-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

/* CTA Section */
.page-contact-us__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-contact-us__cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact-us__cta-title {
  font-size: 3em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-contact-us__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact-us__main-title {
    font-size: 3em;
  }
  .page-contact-us__section-title {
    font-size: 2em;
  }
  .page-contact-us__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-contact-us__main-title {
    font-size: 2.5em;
  }
  .page-contact-us__intro-text {
    font-size: 1em;
  }
  .page-contact-us__section-title {
    font-size: 1.8em;
  }
  .page-contact-us__section-description {
    font-size: 1em;
  }
  .page-contact-us__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-contact-us__channels-grid,
  .page-contact-us__resource-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-us__hero-overlay {
    padding: 15px;
  }
  .page-contact-us__contact-form {
    padding: 30px;
  }
  .page-contact-us__cta-title {
    font-size: 2em;
  }
  /* Mobile content area image constraint */
  .page-contact-us img {
    max-width: 100%;
    height: auto;
  }
  .page-contact-us__channel-icon,
  .page-contact-us__resource-icon {
    width: 100%; /* Ensure it adapts, but min size is still important */
    max-width: 250px; /* Keep a sensible max-width for smaller icons, but ensure display is > 200px */
    min-width: 200px; /* Explicitly set min-width for mobile too */
    height: auto;
  }
  .page-contact-us__hero-image {
    max-height: 400px; /* Limit hero image height on mobile */
  }
}

@media (max-width: 480px) {
  .page-contact-us__main-title {
    font-size: 2em;
  }
  .page-contact-us__cta-title {
    font-size: 1.8em;
  }
  .page-contact-us__container {
    padding: 0 15px;
  }
  .page-contact-us__hero-overlay {
    padding: 10px;
  }
  .page-contact-us__cta-button--submit {
    max-width: 100%;
  }
}