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

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

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

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-support__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-support__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-support__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-support__button--secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

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

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

.page-support__faq-section {
  padding: 40px 0;
  background-color: #FFFFFF;
}

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

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  min-height: 280px; /* Ensure sufficient height for content */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-heading {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__faq-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__read-more:hover {
  color: #e0a53b;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-support__contact-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__contact-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
}

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

.page-support__contact-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-support__why-choose-section {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-support__why-choose-section .page-support__section-title {
  color: #FCBC45;
}

.page-support__why-choose-section .page-support__section-intro {
  color: #f0f0f0;
}

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

.page-support__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-support__feature-item:hover {
  transform: translateY(-5px);
}

.page-support__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Slightly brightens icons for visibility on dark background */
}

.page-support__feature-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-support__feature-description {
  font-size: 0.95em;
  color: #cccccc;
}

.page-support__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  text-align: center;
}

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

.page-support__cta-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }

  .page-support__hero-description {
    font-size: 1.1em;
  }

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

  .page-support__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }

  .page-support__hero-section {
    padding: 60px 20px;
  }

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

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

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__button {
    width: 100%;
    padding: 12px 20px;
  }

  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__faq-item {
    padding: 25px;
    min-height: auto;
  }

  .page-support__faq-heading {
    font-size: 1.3em;
  }

  .page-support__contact-card {
    padding: 30px 20px;
  }

  .page-support__contact-icon {
    width: 150px;
    height: 150px;
  }

  .page-support__contact-card-title {
    font-size: 1.5em;
  }

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

  .page-support__feature-icon {
    width: 150px;
    height: 150px;
  }

  .page-support__cta-title {
    font-size: 2em;
  }

  .page-support__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  
  /* Critical: Prevent content images from overflowing on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  .page-support__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-support__contact-icon,
  .page-support__feature-icon {
    max-width: 100%; /* Ensures these are also constrained */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__button {
    font-size: 1em;
  }
}