.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure 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; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.2;
}

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

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

.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, transform 0.2s ease;
  min-width: 200px;
  text-align: center;
  font-size: 1.1em;
}

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

.page-support__button--primary:hover {
  background-color: #e0a73d;
  border-color: #e0a73d;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Register button color */
  border: 2px solid #FFFFFF;
}

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FCBC45;
  transform: translateY(-2px);
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 1em;
  min-width: unset;
}

.page-support__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(50%); /* Allowed for aesthetic, not color change */
}

.page-support__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

.page-support__faq-category {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__category-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__category-image {
  width: 100%;
  max-width: 400px; /* Ensure image is not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__faq-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
}

.page-support__faq-item {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 10px;
}

.page-support__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-support__faq-item a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__faq-item a:hover {
  color: #FCBC45;
}

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

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

.page-support__method-card {
  background-color: #000000; /* Main color for card background */
  color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-icon {
  width: 100%;
  max-width: 300px; /* Ensure icon is not too small */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__guide-image {
  width: 100%;
  max-width: 400px; /* Ensure image is not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__guide-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__guide-title a {
  color: #000000;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #FCBC45;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #555555;
}

.page-support__trust-security-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-support__security-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__security-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

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

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

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

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

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

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

  .page-support__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-support__section-subtitle {
    font-size: 0.95em;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }

  .page-support__security-content {
    flex-direction: column;
  }

  .page-support__security-image {
    max-width: 100%;
  }

  /* Ensure all images within .page-support are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__guides-section,
  .page-support__trust-security-section,
  .page-support__cta-section {
    padding: 40px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__method-title {
    font-size: 1.6em;
  }
  .page-support__guide-title {
    font-size: 1.4em;
  }
  .page-support__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}