/* style/support.css */

/* Base styles for the support page */
.page-support {
  background-color: #08160F; /* Background */
  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__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-support__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-support__hero-content {
  text-align: center;
  max-width: 900px;
}

.page-support__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-support__btn-primary:hover {
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Main brand color for text */
  border: 2px solid #2E7A4E; /* Border */
  margin: 10px;
}

.page-support__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
  border-color: #2AD16F;
  transform: translateY(-2px);
}

.page-support__btn-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  padding: 5px 0;
  margin-top: 15px;
  display: inline-block;
  border: none;
  background: none;
}

.page-support__btn-link:hover {
  color: #F2FFF6; /* Text Main */
}

/* Introduction Section */
.page-support__introduction-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

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

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

.page-support__channel-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
  background-color: #11271B; /* Card BG */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-support__channel-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-support__channel-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-support__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

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

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

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

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

.page-support__view-all-faq {
  margin-top: 40px;
}

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

.page-support__self-help-list {
  list-style-type: disc;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__list-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-support__list-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-support__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-support__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-support__feature-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

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

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

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

/* Dark background sections */
.page-support__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 2em;
  }

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

@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(2em, 8vw, 2.8em);
  }

  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important;
    padding: 12px 20px;
  }

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

  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-support__channels-grid,
  .page-support__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__channel-card,
  .page-support__feature-item,
  .page-support__faq-item {
    padding: 20px;
  }

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

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

  .page-support__list-item {
    font-size: 1em;
  }

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

  .page-support__hero-image-wrapper,
  .page-support__image,
  .page-support__channel-icon,
  .page-support__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__self-help-list {
    padding-left: 20px;
  }
}

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

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    font-size: 1em;
    padding: 10px 15px;
  }

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