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

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

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

.page-support__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  margin-top: -100px; /* Pull content slightly over image for visual appeal, but not overlapping text */
  padding: 0 20px;
  max-width: 900px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.page-support__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-support__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F; /* Background */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-support__btn-tertiary {
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  border: none;
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-support__btn-tertiary:hover {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2C14E; /* Gold */
}

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

.page-support__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__method-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__method-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-support__method-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #F2FFF6;
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-item summary:hover {
  background-color: rgba(17, 168, 78, 0.1); /* Slight hover effect */
}

.page-support__faq-qtext {
  color: #F2FFF6; /* Text Main */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

.page-support__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__step-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-support__step-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__tip-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__tip-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-support__tip-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__importance-section {
  text-align: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.page-support__importance-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
}

.page-support__importance-text {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__cta-banner-section {
  position: relative;
  margin-top: 60px;
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}

.page-support__cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__cta-banner-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__cta-banner-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__container {
    padding: 0 15px;
  }

  .page-support__hero-content {
    margin-top: -50px;
    padding: 20px;
  }

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

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

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-support__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-support__methods-grid,
  .page-support__guide-steps,
  .page-support__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__method-card,
  .page-support__step-card,
  .page-support__tip-item {
    padding: 20px;
  }

  .page-support__method-title,
  .page-support__step-title,
  .page-support__tip-title {
    font-size: 1.3em;
  }

  .page-support__method-text,
  .page-support__step-text,
  .page-support__tip-text,
  .page-support__importance-text,
  .page-support__cta-banner-description {
    font-size: 0.9em;
  }

  .page-support__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-support__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-support__importance-image {
    margin: 20px auto;
  }

  .page-support__cta-banner-content {
    padding: 20px;
  }

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

  /* Ensure all images are responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image {
    max-height: 400px;
  }

  .page-support__method-image {
    max-width: 100%;
  }

  /* Containers for images */
  .page-support__hero-image-wrapper,
  .page-support__method-card,
  .page-support__importance-section,
  .page-support__cta-banner-section,
  .page-support__cta-banner-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Specific padding for sections that might lack it */
  .page-support__hero-section,
  .page-support__methods-section,
  .page-support__faq-section,
  .page-support__guide-section,
  .page-support__tips-section,
  .page-support__importance-section,
  .page-support__cta-banner-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Contrast Fixes if needed - based on body background #08160F (dark) */
.page-support p, .page-support li, .page-support__hero-description, .page-support__section-description, .page-support__method-text, .page-support__faq-answer, .page-support__step-text, .page-support__tip-text, .page-support__importance-text, .page-support__cta-banner-description {
  color: #A7D9B8; /* Text Secondary for general text on dark background */
}

.page-support__main-title, .page-support__section-title, .page-support__method-title, .page-support__faq-qtext, .page-support__step-title, .page-support__tip-title, .page-support__cta-banner-title {
  color: #F2C14E; /* Gold for titles on dark background */
}

.page-support__btn-primary {
  color: #ffffff; /* White text on gradient button */
}

.page-support__btn-secondary {
  color: #F2C14E; /* Gold text on transparent/gold-bordered button */
}

.page-support__btn-tertiary {
  color: #F2FFF6; /* Text Main on dark background button */
}