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

.page-support__hero-section {
  background-color: #8B0000; /* Deep red background for hero */
  color: #ffffff; /* White text for contrast */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-support__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  border: 2px solid #FFD700;
}

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

.page-support__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

.page-support__button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 250px;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red title */
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-support__faq-section {
  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: #fff;
  border: 1px solid #eee;
  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.4em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  color: #666666;
  margin-bottom: 15px;
}

.page-support__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-support__method-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-support__method-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__method-description {
  color: #666666;
  margin-bottom: 20px;
}

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

.page-support__guide-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-support__guide-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #8B0000;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-support__guide-description {
  color: #666666;
  padding: 0 20px 20px;
}

.page-support__cta-section {
  background-color: #FFD700; /* Gold background for CTA */
  color: #8B0000; /* Deep red text for contrast */
  padding: 80px 20px;
  text-align: center;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-support__cta-actions .page-support__button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-support__cta-actions .page-support__button--primary:hover {
  background-color: #a30000;
}

.page-support__cta-actions .page-support__button--secondary {
  background-color: transparent;
  color: #8B0000;
  border-color: #8B0000;
}

.page-support__cta-actions .page-support__button--secondary:hover {
  background-color: rgba(139, 0, 0, 0.1);
}

.page-support__legal-links {
  text-align: center;
  padding: 30px 20px;
  background-color: #333333;
  border-top: 1px solid #444;
}

.page-support__legal-link {
  color: #FFD700;
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.page-support__legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-support__hero-section {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions,
  .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__content-wrapper {
    padding: 30px 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-support__method-icon {
    width: 150px;
    height: 150px;
  }
  .page-support__guide-image {
    height: 250px;
  }
  .page-support__cta-section {
    padding: 60px 15px;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__legal-link {
    display: block;
    margin: 10px 0;
  }
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__method-icon,
  .page-support__guide-image {
    max-width: 100%;
    height: auto;
  }
}