.page-support {
  font-family: 'Arial', sans-serif;
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  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: clamp(2em, 4vw, 2.8em);
  color: #F2C14E; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__section-description,
.page-support__section-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  margin-bottom: 25px;
}

.page-support__section-text {
  text-align: left;
  margin-bottom: 15px;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  text-align: center;
}

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

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

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

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

.page-support__hero-description {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 30px;
}

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

.page-support__hero-cta-button:hover,
.page-support__contact-button:hover,
.page-support__faq-button:hover,
.page-support__guide-button:hover,
.page-support__faq-cta-button:hover,
.page-support__guide-cta-button:hover,
.page-support__cta-button.page-support__btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Introduction Section */
.page-support__introduction-section {
  padding: 60px 0;
}

/* Contact Methods Section */
.page-support__contact-methods-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green background for contrast */
}

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

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

.page-support__contact-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-support__contact-card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold for card titles */
  margin-bottom: 15px;
}

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

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #1E3A2A; /* Darker green for summary */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary native styling */
}

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

.page-support__faq-question:hover {
  background-color: #0A4B2C;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  color: #57E38D;
}

.page-support__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8;
  text-align: left;
}

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

.page-support__faq-more-info {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
}

.page-support__faq-more-info p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* Guides Section */
.page-support__guides-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green background */
}

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

.page-support__guide-card {
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__guide-card-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

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

.page-support__guide-card-text {
  font-size: 0.95em;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__more-guides {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
}

.page-support__more-guides p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* CTA Section */
.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-support__cta-section .page-support__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__cta-content {
  max-width: 800px;
}

.page-support__cta-title {
  font-size: clamp(2em, 4.5vw, 3em);
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__cta-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-support__cta-image-wrapper {
  width: 100%;
  max-width: 600px;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-support {
    font-size: 15px;
  }

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

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

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

  .page-support__section-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }

  .page-support__section-description,
  .page-support__section-text {
    font-size: 1em;
  }

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

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

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

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

  .page-support__hero-cta-button,
  .page-support__contact-button,
  .page-support__faq-button,
  .page-support__guide-button,
  .page-support__faq-cta-button,
  .page-support__guide-cta-button,
  .page-support__cta-button.page-support__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-support__cta-section .page-support__container {
    flex-direction: column;
  }

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

  .page-support__hero-image-wrapper,
  .page-support__cta-image-wrapper,
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__faq-item,
  .page-support__introduction-section,
  .page-support__contact-methods-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}