.page-support {
  color: #333333; /* Default text color for light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: rgba(255, 215, 0, 0.1); /* Light gold background */
}

.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: 1;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white overlay for text readability */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  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: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

.page-support__button--secondary:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-2px);
}

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

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-support__faq-category {
  margin-bottom: 50px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-category-title {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #8B0000;
}

.page-support__faq-item {
  margin-bottom: 25px;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  font-size: 1em;
  color: #444444;
  line-height: 1.7;
  padding-left: 20px;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-answer.open {
  display: block;
  max-height: 500px; /* Arbitrary large value for smooth transition */
  padding-top: 10px;
}

.page-support__faq-answer a {
  color: #8B0000;
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #FFD700;
}

/* Contact Section */
.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__contact-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px 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; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-support__button--contact {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  font-size: 1em;
}

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

/* Trust Section */
.page-support__trust-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-support__trust-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__trust-icon {
  width: 200px; /* Min size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__trust-item-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-support__trust-item-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

/* CTA Section */
.page-support__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gradient with brand colors */
  text-align: center;
  color: #ffffff;
}

.page-support__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-support__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background-color: #ffffff;
  color: #8B0000;
  border: 2px solid #ffffff;
}

.page-support__button--large:hover {
  background-color: #f0f0f0;
  color: #8B0000;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-container {
    padding: 30px;
  }
  .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%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-support__faq-section, .page-support__contact-section, .page-support__trust-section, .page-support__cta-section {
    padding: 60px 0;
  }
  .page-support__faq-category-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__contact-methods, .page-support__trust-points {
    grid-template-columns: 1fr;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  /* Mobile content image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon, .page-support__trust-icon {
    max-width: 200px; /* Ensure images in cards don't exceed min size, but scale down */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 40px 10px;
  }
  .page-support__hero-container {
    padding: 20px;
  }
  .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 {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}