.page-support {
  background-color: var(--background, #08160F); /* Fallback to a very dark green if --background is not set */
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px; /* Small padding-top, body handles header offset */
  background-color: #08160F; /* Use the background color */
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px; /* Space between content and image */
}

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: #F2FFF6; /* Main text color */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-description a {
  color: #22C768; /* Link color */
  text-decoration: none;
}

.page-support__hero-description a:hover {
  text-decoration: underline;
}

.page-support__hero-image {
  display: block;
  width: 100%;
  max-width: 1200px; /* Max width for the image */
  height: auto;
  margin-top: 30px; /* Space between content and image */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Common Section Styles */
.page-support__introduction-section,
.page-support__faq-section,
.page-support__contact-section,
.page-support__cta-section {
  padding: 60px 0;
}

.page-support__section-title {
  font-size: 2.2rem;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-support__text-block {
  font-size: 1rem;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__text-block a {
  color: #22C768; /* Link color */
  text-decoration: none;
}

.page-support__text-block a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-support__btn-secondary {
  background-color: transparent;
  color: #22C768;
  border: 2px solid #22C768;
  margin-left: 20px; /* Space between primary and secondary buttons */
}

.page-support__btn-secondary:hover {
  background-color: #22C768;
  color: #08160F; /* Dark text on hover */
  border-color: #22C768;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Images within content */
.page-support__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  user-select: none;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-item[open] .page-support__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

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

/* Hide default details marker */
.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-support__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__faq-answer a {
  color: #22C768;
  text-decoration: none;
}

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

/* Contact Section */
.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.page-support__contact-card {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-support__contact-card-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-support__contact-email,
.page-support__contact-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: #22C768;
  margin-bottom: 20px;
}

/* CTA Section */
.page-support__cta-section .page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green for a stronger contrast */
  padding: 60px 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-support__cta-section .page-support__section-title,
.page-support__cta-section .page-support__text-block {
  color: #F2FFF6;
}

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

  .page-support__hero-section {
    padding: 30px 15px;
  }

  .page-support__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .page-support__introduction-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__cta-section {
    padding: 40px 0;
  }

  .page-support__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-support__text-block {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image,
  .page-support__image {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Containers */
  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons */
  .page-support__btn-primary,
  .page-support__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
  }

  .page-support__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  /* FAQ */
  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-support__faq-answer {
    padding: 10px 20px 15px 20px;
    font-size: 0.9rem;
  }

  /* Contact Cards */
  .page-support__contact-methods {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }

  .page-support__contact-card {
    padding: 25px;
  }

  .page-support__contact-card-title {
    font-size: 1.3rem;
  }

  .page-support__contact-email,
  .page-support__contact-phone {
    font-size: 1rem;
  }
}