.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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  text-align: center;
  overflow: hidden;
  background-color: #08160F;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-support__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__hero-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 gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-support__cta-button--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-support__section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green for sections */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__section:last-of-type {
  border-bottom: none;
}

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

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

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

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

.page-support__guide-heading {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-support__guide-list {
  list-style: decimal;
  padding-left: 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-support__guide-list li {
  margin-bottom: 10px;
}

.page-support__image-wrapper {
  text-align: center;
  margin: 50px 0;
}

.page-support__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

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

.page-support__faq-item summary:hover {
  background-color: #2E7A4E; /* Border on hover */
}

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

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

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

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

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

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

.page-support__contact-heading {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-support__contact-text span {
  color: #F2C14E; /* Gold */
  font-weight: 500;
}

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

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

.page-support__policy-heading {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-support__policy-list {
  list-style: disc;
  padding-left: 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-support__policy-list li {
  margin-bottom: 10px;
}

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

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

  .page-support__guide-grid,
  .page-support__contact-methods,
  .page-support__policy-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-support__container,
  .page-support__section,
  .page-support__download-guide,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__security-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__hero-section {
    padding: 10px 0 40px 0;
  }

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

  .page-support__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-support__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-support__cta-button--center {
    max-width: 100% !important;
  }

  .page-support__section {
    padding: 50px 0;
  }

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

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

  .page-support__guide-item,
  .page-support__contact-card,
  .page-support__policy-item {
    padding: 25px;
  }

  .page-support__guide-heading,
  .page-support__contact-heading,
  .page-support__policy-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

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

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

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

  .page-support__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-support__guide-grid,
  .page-support__contact-methods,
  .page-support__policy-grid {
    gap: 20px;
  }
}