.page-support {
  color: #333333; /* Dark text for default 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__container--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-support__hero-section {
  background-color: #007bff; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
}

.page-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for emphasis */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  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, transform 0.2s ease;
  font-size: 1.1em;
}

.page-support__button--primary {
  background-color: #ffc107; /* Auxiliary color for primary action */
  color: #007bff;
  border: 2px solid #ffc107;
}

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

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

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

.page-support__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__security-section,
.page-support__download-section,
.page-support__terms-privacy-section,
.page-support__community-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  margin-bottom: 20px;
}

.page-support__faq-section:nth-of-type(even),
.page-support__guides-section:nth-of-type(even),
.page-support__security-section:nth-of-type(even),
.page-support__terms-privacy-section:nth-of-type(even),
.page-support__community-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-support__faq-grid,
.page-support__contact-methods,
.page-support__guides-grid,
.page-support__security-features {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

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

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-support__image--centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__contact-card {
  background-color: #007bff;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-support__contact-card:hover {
  background-color: #0056b3;
}

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

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

.page-support__guides-grid,
.page-support__security-features {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-support__guide-card,
.page-support__feature-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-support__guide-title,
.page-support__feature-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
}

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

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

.page-support__guide-description,
.page-support__feature-description {
  color: #555555;
  font-size: 1em;
}

.page-support__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-support__download-content {
  flex: 1;
  min-width: 300px;
}

.page-support__download-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__policy-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

.page-support__policy-list li {
  margin-bottom: 15px;
}

.page-support__policy-list li a {
  font-size: 1.1em;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-support__policy-list li a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-support__social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-support__social-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  background-color: #007bff;
  color: #ffffff;
  border: 1px solid #007bff;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.page-support__social-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__section-intro {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guides-grid,
  .page-support__security-features {
    grid-template-columns: 1fr;
  }
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__feature-item {
    padding: 20px;
  }
  .page-support__faq-question,
  .page-support__contact-title,
  .page-support__guide-title,
  .page-support__feature-title {
    font-size: 1.2em;
  }
  .page-support__container--flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-support__download-content,
  .page-support__download-image {
    min-width: unset;
    width: 100%;
  }
  /* Content area images must not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__image--centered {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.5em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 250px;
  }
  .page-support__section-title {
    font-size: 1.4em;
  }
}