/* style/support.css */
.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 space for fixed header */
}

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  color: #FFFFFF;
  padding: 60px 20px;
}

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

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

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

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

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

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

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

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

.page-support__faq-section, .page-support__getting-started-section, .page-support__contact-section, .page-support__security-section, .page-support__technical-section, .page-support__promo-help-section, .page-support__final-cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-support__faq-image {
  display: block;
  margin: 50px auto 0;
  width: 800px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-support__guide-steps, .page-support__contact-methods, .page-support__security-features, .page-support__troubleshooting-tips, .page-support__promo-guides {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__guide-item, .page-support__contact-item, .page-support__feature-item, .page-support__tip-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-support__guide-heading, .page-support__contact-heading, .page-support__feature-heading, .page-support__tip-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__guide-text, .page-support__contact-text, .page-support__feature-text, .page-support__tip-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-support__guide-image, .page-support__contact-image, .page-support__security-image {
  display: block;
  margin: 50px auto 0;
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__button--contact:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-support__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.2em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__faq-image, .page-support__guide-image, .page-support__contact-image, .page-support__security-image {
    max-width: 800px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 5px;
  }
  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__faq-question, .page-support__guide-heading, .page-support__contact-heading, .page-support__feature-heading, .page-support__tip-heading {
    font-size: 1.2em;
  }
  .page-support__faq-list, .page-support__guide-steps, .page-support__contact-methods, .page-support__security-features, .page-support__troubleshooting-tips, .page-support__promo-guides {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__faq-item, .page-support__guide-item, .page-support__contact-item, .page-support__feature-item, .page-support__tip-item {
    padding: 20px;
  }
  .page-support__faq-image, .page-support__guide-image, .page-support__contact-image, .page-support__security-image {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__button--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__button {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-intro {
    font-size: 0.85em;
  }
  .page-support__faq-question, .page-support__guide-heading, .page-support__contact-heading, .page-support__feature-heading, .page-support__tip-heading {
    font-size: 1.1em;
  }
}