.page-contact {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-contact__hero-section {
  background-color: #000000; /* Main color as background */
  color: #ffffff; /* White text for dark background */
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-contact__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for highlight */
  font-weight: bold;
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__hero-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-contact__hero-button--register:hover {
  background-color: #f0f0f0;
}

.page-contact__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-contact__hero-button--login:hover {
  background-color: #e0a53b;
}

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

.page-contact__channels-section {
  padding: 60px 0;
  background-color: #f5f5f5;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
}

.page-contact__channel-card:hover {
  transform: translateY(-5px);
}

.page-contact__channel-icon {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-contact__channel-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

.page-contact__faq-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-contact__faq-image {
  flex: 1;
  min-width: 200px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-list {
  flex: 2;
  text-align: left;
}

.page-contact__faq-item {
  margin-bottom: 25px;
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-contact__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-contact__more-help {
  margin-top: 50px;
  text-align: center;
}

.page-contact__more-help-text {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-contact__hero-title {
    font-size: 2.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__faq-content {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__faq-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 15px 30px;
  }
  .page-contact__hero-title {
    font-size: 2em;
  }
  .page-contact__hero-description {
    font-size: 1em;
  }
  .page-contact__hero-button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 5px;
  }
  .page-contact__channels-section, .page-contact__faq-section {
    padding: 40px 0;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
  }
  .page-contact__channels-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__channel-card {
    padding: 25px;
  }
  .page-contact__channel-icon {
    width: 150px;
    height: 100px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__card-text {
    font-size: 0.9em;
  }
  .page-contact__faq-question {
    font-size: 1.1em;
  }
  .page-contact__faq-answer {
    font-size: 0.9em;
  }
  .page-contact__hero-section img,
  .page-contact__channels-grid img,
  .page-contact__faq-image {
    max-width: 100%;
    height: auto;
  }
  .page-contact__channel-icon, .page-contact__faq-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-button {
    display: block;
    margin: 10px auto;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__channel-icon {
    width: 100%; /* Ensures it fills card but respects min-width */
    height: auto;
  }
}