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

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

.page-contact__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px 40px; /* Adjusted padding to accommodate image */
  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: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  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: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px 20px;
}

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

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

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

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

.page-contact__hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure image does not overflow on mobile */
  height: auto; /* Maintain aspect ratio */
}

.page-contact__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

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

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

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

.page-contact__channel-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-contact__channel-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Maintain aspect ratio or adjust as needed */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

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

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

.page-contact__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-contact__faq-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-contact__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
}

.page-contact__faq-item.active .page-contact__faq-question::after {
  content: '-';
}

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

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

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

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

.page-contact__why-us-section {
  padding: 60px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-contact__why-us-section .page-contact__section-title,
.page-contact__why-us-section .page-contact__section-intro {
  color: #FFFFFF;
}

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

.page-contact__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-contact__feature-icon {
  width: 250px; /* Minimum size requirement */
  height: 180px; /* Maintain aspect ratio or adjust as needed */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-contact__feature-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

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

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

.page-contact__cta-section {
  background-color: #FCBC45;
  padding: 60px 20px;
  text-align: center;
  color: #000000;
}

.page-contact__cta-content {
  max-width: 900px;
}

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

.page-contact__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #333333;
}

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

.page-contact__cta-button--primary {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-contact__cta-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-contact__cta-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #333333;
}

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

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

  .page-contact__hero-button {
    width: 100%;
    margin: 10px 0;
  }

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

  .page-contact__channels-grid,
  .page-contact__features-grid {
    grid-template-columns: 1fr;
  }

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

  .page-contact__cta-button {
    width: 100%;
    margin: 10px 0;
  }

  /* Ensure images in content areas are responsive and don't overflow */
  .page-contact__channels-grid img,
  .page-contact__features-grid img,
  .page-contact__faq-item img { /* Targeting any img within content areas */
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-
  }

  /* Also ensure the main content container itself prevents overflow */
  .page-contact {
    overflow-x: hidden;
  }
}