.page-contact {
  color: #333333; /* Dark text on light body background */
}

.page-contact__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  min-height: 400px; /* Minimum height for hero section */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-contact__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-contact__hero-title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-contact__why-us-section, .page-contact__channels-section, .page-contact__faq-section, .page-contact__commitment-section {
  padding: 60px 0;
}

.page-contact__section-title {
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
}

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

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

.page-contact__features-list, .page-contact__commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact__feature-item, .page-contact__commitment-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__feature-item:hover, .page-contact__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__feature-title, .page-contact__commitment-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact__feature-text, .page-contact__commitment-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
}

.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: 1px solid #EEEEEE;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-contact__channel-icon {
  width: 250px; /* Minimum 200px */
  height: 187.5px; /* Maintain aspect ratio for 800x600 */
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-contact__channel-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-contact__channel-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-contact__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.page-contact__button--login {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-contact__button--login:hover {
  background-color: #E0A83A;
  border-color: #E0A83A;
}

.page-contact__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #000000;
}

.page-contact__button--register:hover {
  background-color: #EEEEEE;
  border-color: #000000;
}

.page-contact__button--large {
  padding: 15px 40px;
  font-size: 1.1rem;
  margin-top: 30px;
}

.page-contact__faq-image {
  width: 800px; /* Minimum 200px */
  height: 600px; /* Maintain aspect ratio for 1000x750 */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 50px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-contact__faq-item {
  background-color: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-contact__faq-question {
  font-size: 1.3rem;
  color: #000000;
  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.5rem;
  transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  display: none;
  padding-top: 10px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__hero-title {
    font-size: 3rem;
  }

  .page-contact__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    min-height: 300px;
  }
  .page-contact__hero-container {
    padding: 30px 15px;
  }
  .page-contact__hero-title {
    font-size: 2.5rem;
  }
  .page-contact__hero-description {
    font-size: 1rem;
  }
  .page-contact__section-title {
    font-size: 2rem;
  }
  .page-contact__section-intro {
    font-size: 0.95rem;
  }
  .page-contact__features-list, .page-contact__channel-grid, .page-contact__commitment-list {
    grid-template-columns: 1fr;
  }
  .page-contact__feature-item, .page-contact__commitment-item, .page-contact__channel-card {
    padding: 25px;
  }
  .page-contact__channel-icon, .page-contact__faq-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .page-contact__button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .page-contact__button--large {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .page-contact__faq-question {
    font-size: 1.1rem;
  }
  .page-contact__faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2rem;
  }
  .page-contact__hero-description {
    font-size: 0.9rem;
  }
  .page-contact__section-title {
    font-size: 1.8rem;
  }
  .page-contact__channel-title {
    font-size: 1.5rem;
  }
}