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

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

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

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

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

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

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

.page-contact__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

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

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

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

.page-contact__channels-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

.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: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__channel-icon {
  width: 100%; /* Ensure images take full width of card */
  height: auto; /* Maintain aspect ratio */
  max-width: 300px; /* Max width for consistency */
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

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

.page-contact__channel-button {
  display: inline-block;
  background-color: #000000; /* Main color for buttons */
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

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

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.page-contact__social-icon {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #e0a73c;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-contact__faq-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-contact__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-contact__faq-item:hover {
  background-color: #f0f0f0;
}

.page-contact__faq-question {
  font-weight: bold;
  font-size: 1.1em;
  color: #000000;
  list-style: none;
}

.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

.page-contact__faq-question::before {
  content: '+ ';
  margin-right: 10px;
  color: #FCBC45;
}

details[open] .page-contact__faq-question::before {
  content: '- ';
}

.page-contact__faq-answer {
  padding-top: 10px;
  font-size: 1em;
  color: #444444;
  border-top: 1px solid #eeeeee;
  margin-top: 10px;
}

.page-contact__faq-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-contact__faq-button:hover {
  background-color: #333333;
}

/* CTA Section */
.page-contact__cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-contact__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

  .page-contact__channels-title, .page-contact__faq-title, .page-contact__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 60px 0;
  }

  .page-contact__hero-title {
    font-size: 2.2em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__channels-section, .page-contact__faq-section, .page-contact__cta-section {
    padding: 40px 0;
  }

  .page-contact__channels-title, .page-contact__faq-title, .page-contact__cta-title {
    font-size: 1.8em;
  }

  .page-contact__channels-intro, .page-contact__faq-intro, .page-contact__cta-description {
    font-size: 0.95em;
  }

  .page-contact__channel-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__channel-icon {
    max-width: 250px;
    margin: 0 auto 20px;
  }

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

  /* Specific override for hero image to ensure it covers */
  .page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-section {
    padding: 40px 0;
  }

  .page-contact__hero-title {
    font-size: 1.8em;
  }

  .page-contact__hero-button, .page-contact__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__channels-title, .page-contact__faq-title, .page-contact__cta-title {
    font-size: 1.5em;
  }

  .page-contact__channel-card {
    padding: 20px;
  }

  .page-contact__channel-name {
    font-size: 1.5em;
  }

  .page-contact__faq-question {
    font-size: 1em;
  }
}