.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding for first section, body handles header offset */
}

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-support__section-description {
  font-size: 1em;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.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;
  cursor: pointer;
  color: #FFF6D6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-support__faq-question h3 {
  margin: 0;
  color: #FFF6D6;
  font-size: 1em;
}

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

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

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

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 20px;
}

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

.page-support__faq-link {
  color: #FFD36B; /* Auxiliary color */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #F2C14E; /* Main color */
}

/* Contact Methods Section */
.page-support__contact-methods-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

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

.page-support__contact-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block; /* Ensure it's block for proper centering */
}

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

.page-support__card-text {
  color: #FFF6D6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for light button */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%; /* Ensure full width in card */
  max-width: 200px; /* Limit max width for desktop */
}

.page-support__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 193, 78, 0.3);
}

/* Resources Section */
.page-support__resources-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-support__resource-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-support__resource-text {
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__resource-link {
  display: inline-block;
  color: #FFD36B; /* Auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__resource-link:hover {
  color: #F2C14E; /* Main color */
}

/* Commitment Section */
.page-support__commitment-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
  text-align: center;
}

.page-support__commitment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-image-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-support__container {
    padding: 0 15px !important;
  }

  .page-support__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
  }

  .page-support__main-title {
    font-size: 2em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__cta-button,
  .page-support__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .page-support__section-description {
    margin-bottom: 30px;
  }

  .page-support__faq-section,
  .page-support__contact-methods-section,
  .page-support__resources-section,
  .page-support__commitment-section {
    padding: 40px 0;
  }

  .page-support__contact-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__faq-question {
    font-size: 1em;
  }

  .page-support__contact-card,
  .page-support__resource-card {
    padding: 20px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__hero-image-wrapper,
  .page-support__commitment-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }

  .page-support__section-title {
    font-size: 1.6em;
  }
}