.page-contact {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #ffffff;
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-contact__hero-section {
  background-color: #1A237E;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-contact__hero-image-wrapper {
  margin: 40px auto;
  max-width: 1000px; /* Adjust max-width for display */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-contact__hero-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-contact__cta-button:hover {
  background-color: #e5ac00;
  transform: translateY(-3px);
}

.page-contact__cta-button--secondary {
  background-color: #1A237E;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-contact__cta-button--secondary:hover {
  background-color: #0d1245;
  border-color: #e5ac00;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-contact__channels-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-contact__channel-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  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 8px 20px rgba(0, 0, 0, 0.15);
}

.page-contact__channel-icon {
  width: 250px; /* Ensure min 200px */
  height: 167px; /* Maintain aspect ratio */
  margin-bottom: 25px;
  object-fit: cover;
  border-radius: 8px;
}

.page-contact__channel-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-contact__channel-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-contact__email-address {
  font-weight: bold;
  color: #FFC107;
  font-size: 1.1em;
  margin-top: 15px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.95em;
}

.page-contact__channel-button:hover {
  background-color: #e5ac00;
}

.page-contact__commitment-section {
  padding: 60px 0;
  background-color: #e8eaf6;
}

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

.page-contact__feature-card {
  background-color: #ffffff;
  border-left: 5px solid #1A237E;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-contact__feature-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__feature-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-contact__feature-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
}

.page-contact__feature-link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__feature-link:hover {
  color: #e5ac00;
  text-decoration: underline;
}

.page-contact__feedback-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-contact__feedback-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-contact__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1A237E;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFC107;
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #FFC107;
  color: #1A237E;
  border: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
}

.page-contact__faq-section {
  padding: 60px 0;
  background-color: #f0f2f5;
}

.page-contact__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

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

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-top: 15px;
  display: none;
}

.page-contact__faq-answer.active {
  display: block;
}

.page-contact__faq-link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
  color: #e5ac00;
  text-decoration: underline;
}

.page-contact__closing-cta-section {
  background-color: #1A237E;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-contact__closing-cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .page-contact {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-contact__channel-grid,
  .page-contact__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__feedback-form {
    padding: 25px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-intro {
    font-size: 0.95em;
  }
  /* Content area images must not overflow */
  .page-contact__hero-image,
  .page-contact__channel-icon,
  .page-contact__faq-item img { /* If any images were in FAQ, ensure they are responsive */
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image styles cause display size < 200px */
  .page-contact__channel-icon {
    width: 250px; /* Keep minimum display size */
    height: 167px;
  }
  .page-contact__channel-icon, .page-contact__hero-image {
    min-width: 200px; /* Enforce minimum display size for all content images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-description {
    font-size: 0.9em;
  }
  .page-contact__cta-button {
    width: 90%;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__channel-card,
  .page-contact__feature-card,
  .page-contact__faq-item {
    padding: 20px;
  }
  .page-contact__faq-question {
    font-size: 1.2em;
  }
}