.page-support {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-support__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-support__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFB04D; /* Using Glow for prominent title */
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.3);
  min-width: 200px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.5);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

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

.page-support__faq-section {
  background-color: #17191F; /* Card BG */
  border-top: 1px solid #A84F0C;
}

.page-support__guides-section {
  border-top: 1px solid #A84F0C;
}

.page-support__contact-section {
  background-color: #17191F; /* Card BG */
  border-top: 1px solid #A84F0C;
  border-bottom: 1px solid #A84F0C;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.page-support__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #FF8C1A;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.page-support__section-description {
  font-size: 1.05em;
  line-height: 1.5;
  color: #FFF3E6;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

.page-support__faq-list {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.page-support__faq-item {
  background-color: #0D0E12;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__faq-item:hover {
  background-color: #1a1c22;
}

.page-support__faq-question {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFF3E6;
  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: #FFA53A;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::after {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF3E6;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
  max-height: 500px; /* Arbitrary large value for smooth transition */
  margin-top: 15px;
}

.page-support__faq-link {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  display: inline-block;
}

.page-support__faq-link:hover {
  text-decoration: underline;
}

.page-support__faq-image {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__guides-content {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.page-support__guides-image {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__guides-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-support__guides-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 15px 20px;
}

.page-support__guides-item a {
  color: #FFF3E6;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: color 0.2s ease;
}

.page-support__guides-item a:hover {
  color: #FFA53A;
}

.page-support__contact-info {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
}

.page-support__contact-image {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-support__contact-item {
  font-size: 1.1em;
  line-height: 1.8;
  color: #FFF3E6;
}

.page-support__contact-item a {
  color: #FFA53A;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__container {
    flex-direction: column;
    text-align: center;
  }

  .page-support__faq-list,
  .page-support__guides-content,
  .page-support__contact-info {
    max-width: 100%;
    order: 2; /* Content below image on smaller screens */
  }

  .page-support__faq-image,
  .page-support__guides-image,
  .page-support__contact-image {
    max-width: 100%;
    order: 1;
    margin-bottom: 30px;
  }

  .page-support__section-title,
  .page-support__section-description {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__guides-image,
  .page-support__contact-image {
    max-width: 100%;
    height: auto;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-support__section-title {
    font-size: clamp(1.6em, 6vw, 2em);
  }

  .page-support__hero-description,
  .page-support__section-description,
  .page-support__faq-question,
  .page-support__faq-answer,
  .page-support__contact-item {
    font-size: clamp(0.9em, 3.5vw, 1.1em);
  }

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

@media (max-width: 480px) {
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section {
    padding: 30px 15px;
  }
}