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

.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;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetics */
  background: #08160F; /* Deep Green background */
  color: #F2FFF6;
  overflow: hidden;
}

.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;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

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

.page-support__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for title */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

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

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-support__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-support__video-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-support__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-support__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
  cursor: pointer;
}

.page-support__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #F2C14E; /* Gold for section titles */
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

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

.page-support__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG color for light section */
  color: #F2FFF6;
}

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

.page-support__faq-card {
  background-color: #0A4B2C; /* Deep Green for FAQ cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__faq-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Ensure minimum size */
}

.page-support__faq-category-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #F2C14E;
}

.page-support__faq-item {
  width: 100%;
  margin-bottom: 15px;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  padding-bottom: 15px;
}

.page-support__faq-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
}

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

.page-support__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow color */
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  font-size: 1rem;
  color: #A7D9B8;
  padding-top: 10px;
  text-align: left;
}

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

.page-support__guides-section {
  padding: 60px 0;
  background-color: #08160F; /* Main background color */
  color: #F2FFF6;
}

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

.page-support__guide-card:last-of-type {
  margin-bottom: 0;
}

.page-support__guide-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2AD16F; /* Green for guide titles */
}

.page-support__guide-card p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG color for light section */
  color: #F2FFF6;
}

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

.page-support__contact-card {
  background-color: #0A4B2C; /* Deep Green for contact cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Ensure minimum size */
}

.page-support__contact-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-support__contact-card p {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-support__security-section {
  padding: 60px 0;
  background-color: #08160F; /* Main background color */
  color: #F2FFF6;
}

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

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

.page-support__security-icon {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Ensure minimum size */
}

.page-support__security-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2AD16F;
}

.page-support__security-item p {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-support__cta-banner {
  padding: 60px 0;
  background-color: #11271B; /* Card BG color for light section */
  color: #F2FFF6;
  text-align: center;
}

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

.page-support__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-height: 200px; /* Ensure minimum size */
}

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

  .page-support__container,
  .page-support__hero-content,
  .page-support__faq-card,
  .page-support__guide-card,
  .page-support__contact-card,
  .page-support__security-item,
  .page-support__cta-banner .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__security-section,
  .page-support__cta-banner {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

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

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

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

  .page-support__subtitle,
  .page-support__section-description,
  .page-support__guide-card p,
  .page-support__contact-card p,
  .page-support__security-item p {
    font-size: 1rem;
  }

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-support__video,
  .page-support__hero-image,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__security-icon,
  .page-support__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important;
  }

  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__security-features {
    grid-template-columns: 1fr;
  }

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

  .page-support__faq-answer {
    font-size: 0.95rem;
  }
}