/* style/support.css */
/* Body background color is #08160F (Deep Green, dark), so text should be light */

.page-support {
  background-color: #08160F;
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  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;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
  color: #F2FFF6;
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

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

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

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-support__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  padding-top: 40px;
}

.page-support__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Channels Section */
.page-support__channels-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__channel-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

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

.page-support__channel-button {
  display: inline-block;
  padding: 10px 20px;
  background: #22C768; /* Auxiliary color */
  color: #08160F;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-support__channel-button:hover {
  background: #11A84E;
  color: #F2FFF6;
}

/* Self-Help Section */
.page-support__self-help-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-support__guide-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-support__guide-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
}

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

.page-support__guide-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__guide-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

/* Security Section */
.page-support__security-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-support__security-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-support__security-link {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  margin: 10px 15px;
  transition: color 0.3s ease;
}

.page-support__security-link:hover {
  color: #2AD16F;
  text-decoration: underline;
}

/* Quality Section */
.page-support__quality-section {
  padding: 80px 0;
  background-color: #08160F;
}

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

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

.page-support__point-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__point-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-support__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  margin-top: 50px;
}

.page-support__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-support__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

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

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

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

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

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

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

.page-support__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
}

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

/* Contact CTA Section */
.page-support__contact-cta-section {
  padding: 80px 0;
  background-color: #08160F;
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-section {
    padding: 40px 0;
  }
  .page-support__hero-content {
    padding: 0 15px;
  }
  .page-support__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-support__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

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

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

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

  /* Containers for images/videos/buttons */
  .page-support__hero-image-wrapper,
  .page-support__channels-section,
  .page-support__self-help-section,
  .page-support__security-section,
  .page-support__quality-section,
  .page-support__faq-section,
  .page-support__contact-cta-section,
  .page-support__channel-card,
  .page-support__guide-card,
  .page-support__point-card,
  .page-support__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Hero Section */
  .page-support__hero-section {
    padding: 30px 0;
    padding-top: 10px !important;
  }
  .page-support__hero-content {
    padding: 0;
  }
  .page-support__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-support__description {
    font-size: 1rem;
  }

  /* Buttons responsiveness */
  .page-support__cta-button,
  .page-support__channel-button,
  .page-support__guide-link {
    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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__cta-button:last-child {
    margin-bottom: 0;
  }

  /* Sections padding */
  .page-support__channels-section,
  .page-support__self-help-section,
  .page-support__security-section,
  .page-support__quality-section,
  .page-support__faq-section,
  .page-support__contact-cta-section {
    padding: 40px 0;
  }

  .page-support__channels-grid,
  .page-support__guides-grid,
  .page-support__commitment-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

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

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

  .page-support__faq-item summary {
    font-size: 1.1rem;
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-support__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-support__description,
  .page-support__section-description,
  .page-support__channel-text,
  .page-support__guide-text,
  .page-support__point-text,
  .page-support__faq-answer {
    font-size: 0.9rem;
  }
  .page-support__faq-item summary {
    font-size: 1rem;
  }
}