.page-support {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Primary and Secondary */
  padding-top: var(--header-offset, 120px);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content-wrapper {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
  position: relative;
  margin-bottom: 20px;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  z-index: 0;
  position: relative;
}

.page-support__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-support__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 700;
  color: #111111; /* Dark text for light background hero */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.1em;
  color: #333333; /* Dark text for light background hero */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__button-primary,
.page-support__button-secondary,
.page-support__button-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-support__button-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for gradient button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-support__button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-support__button-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.2);
}

.page-support__button-secondary:hover {
  background: #222222;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-support__button-link {
  background: none;
  color: #FFD36B; /* Glow */
  border: 2px solid #3A2A12; /* Border */
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-support__button-link:hover {
  color: #F2C14E;
  border-color: #F2C14E;
}

.page-support__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12;
}

.page-support__section:last-of-type {
  border-bottom: none;
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Primary */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #FFD36B; /* Glow */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__section p {
  font-size: 1.05em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 25px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__grid-three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Primary */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__card p {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  text-align: left;
}

.page-support__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
}

.page-support__list li {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.0em;
  color: #FFF6D6; /* Text Main */
  display: flex;
  align-items: center;
}

.page-support__list li::before {
  content: '✓';
  color: #FFD36B; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-support__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E; /* Primary */
  cursor: pointer;
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #1a1a1a;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow */
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-support__faq-answer p {
  font-size: 1.0em;
  color: #FFF6D6; /* Text Main */
  text-align: left;
  margin-bottom: 0;
}

.page-support__contact-methods {
  margin-top: 40px;
}

.page-support__legal-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-support__legal-links li a {
  color: #FFD36B; /* Glow */
  text-decoration: none;
  font-size: 1.0em;
  transition: color 0.3s ease;
}

.page-support__legal-links li a:hover {
  color: #F2C14E; /* Primary */
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 30px;
  }

  .page-support__hero-content-wrapper {
    margin-bottom: 0;
  }

  .page-support__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-support__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px; /* Constrain buttons */
    margin: 0 auto;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-support__button-primary,
  .page-support__button-secondary,
  .page-support__button-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-support__section {
    padding: 40px 0;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-support__section p {
    font-size: 0.95em;
  }

  .page-support__grid-two-cols,
  .page-support__grid-three-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card {
    padding: 25px;
  }

  .page-support__card-title {
    font-size: 1.3em;
  }

  .page-support__list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-support__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-support__faq-answer p {
    font-size: 0.9em;
  }

  .page-support__legal-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset; /* Allow smaller images on mobile if needed, but still responsive */
    min-height: unset;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: clamp(1.5em, 9vw, 2em);
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__section {
    padding: 30px 0;
  }
  .page-support__card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 1.2em;
  }
}