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

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

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

.page-support__lead-text {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

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

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__cta-button--centered {
  margin: 20px auto 0 auto;
}

.page-support__section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-support__introduction-section {
  background-color: #08160F;
}

.page-support__channels-section {
  background-color: #11271B; /* Card BG */
}

.page-support__guide-section {
  background-color: #08160F;
}

.page-support__faq-section {
  background-color: #11271B; /* Card BG */
}

.page-support__tips-section {
  background-color: #08160F;
}

.page-support__conclusion-section {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  padding-bottom: 60px;
}

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

.page-support__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-support__text-block strong {
  color: #57E38D; /* Glow */
}

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

.page-support__channel-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-support__card-text {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__guide-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
  padding: 20px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__guide-block:last-child {
  border-bottom: none;
}

.page-support__guide-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__guide-block .page-support__text-block {
  flex: 1 1 55%;
  padding-right: 20px;
}

.page-support__guide-block .page-support__image {
  flex: 1 1 40%;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-support__image--left {
  order: -1;
  margin-right: 20px;
}

.page-support__image--right {
  margin-left: 20px;
}

.page-support__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 55%;
  color: #F2FFF6; /* Text Main */
}

.page-support__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-support__list li::before {
  content: '✓';
  color: #2AD16F; /* Main green */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-support__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #2AD16F; /* Main green */
}

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

.page-support__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-support__inline-button {
  display: inline-block;
  padding: 8px 15px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 10px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__inline-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Ensure images don't have filter for color change */
.page-support img {
  filter: none; /* Reset any potential filter */
}

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

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

  .page-support__channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-support__guide-block .page-support__image {
    max-width: 100%;
    margin-top: 20px;
    order: unset; /* Reset order for smaller screens */
    margin-left: 0;
    margin-right: 0;
  }

  .page-support__guide-block .page-support__text-block,
  .page-support__list {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .page-support__image--left, .page-support__image--right {
    margin: 20px auto; /* Center image */
  }
}

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

  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

  .page-support__lead-text {
    font-size: 1em;
  }

  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__cta-button--centered {
    margin-left: auto !important;
    margin-right: auto !important;
  }

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

  .page-support__text-block {
    font-size: 1em;
  }

  .page-support__channels-grid {
    grid-template-columns: 1fr;
  }

  .page-support__channel-card {
    padding: 20px;
  }

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

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

  .page-support__guide-title {
    font-size: 1.5em;
  }

  .page-support__list {
    padding-left: 0;
  }

  .page-support__list li {
    padding-left: 20px;
  }

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

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

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

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__channels-section,
  .page-support__guide-section,
  .page-support__faq-section,
  .page-support__tips-section,
  .page-support__conclusion-section,
  .page-support__hero-content,
  .page-support__channels-grid,
  .page-support__channel-card,
  .page-support__guide-block,
  .page-support__faq-item,
  .page-support__cta-button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__hero-image-wrapper {
    padding: 0 !important;
  }

  .page-support__guide-block .page-support__image {
    margin: 15px auto !important;
    max-width: 100% !important;
  }

  .page-support__inline-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-support__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* Ensure no filter is applied to images for color change */
.page-support img {
  filter: none;
}

/* HTML img width/height and CSS width/height must be consistent or responsive */
.page-support img[width][height] {
  max-width: 100%;
  height: auto;
}

/* Content area images minimal size */
.page-support__content-area img, 
.page-support__guide-block img,
.page-support__tips-section img {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fixes */
.page-support__dark-bg {
  color: #ffffff; /* Deep Green or Card BG */
}

.page-support__light-bg {
  color: #333333; /* Default for potential light backgrounds, though current design is dark */
}

.page-support p, .page-support li {
  color: #F2FFF6; /* Text Main */
}

.page-support a {
  color: #2AD16F; /* Main green for links */
  text-decoration: none;
}

.page-support a:hover {
  text-decoration: underline;
  color: #57E38D; /* Glow on hover */
}

details > summary::-webkit-details-marker {
  display: none;
}
details > summary {
  list-style: none;
}