/* style/support.css */
.page-support {
  color: #ffffff; /* Body background is #1a1a2e (dark), so text should be light */
  background-color: #1a1a2e; /* Ensure main content area also has dark background for consistency */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #1a1a2e;
  overflow: hidden; /* For image */
}

.page-support__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 30px; /* Space between text and image */
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__hero-content h1 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff; /* Light text on dark background */
  margin-bottom: 20px;
}

.page-support__hero-content p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-support__button:hover {
  background-color: #a00606;
}

.page-support__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-support__section--dark {
  background-color: #017439; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-support__section h2 {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* Light text on dark background */
}

.page-support__section h3 {
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #ffffff; /* Light text on dark background */
}

.page-support__section p,
.page-support__section li {
  font-size: 1em;
  margin-bottom: 15px;
  color: #f0f0f0; /* Slightly lighter for paragraphs */
}

.page-support__section ol {
  list-style-type: decimal;
  margin-left: 20px;
  padding-left: 0;
}

.page-support__section a {
  color: #FFFF00; /* Use Register/Login font color for links for visibility */
  text-decoration: underline;
}

.page-support__section a:hover {
  color: #FFF;
}

.page-support__phone-number {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFF00;
  margin-top: 15px;
}

/* Contact Methods */
.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__contact-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-support__contact-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-item details > summary {
  list-style: none; /* Hide default marker */
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-support__faq-item details > summary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
}

.page-support__faq-answer {
  padding: 20px;
  padding-top: 0;
  color: #f0f0f0;
  font-size: 0.95em;
}

/* Images in content */
.page-support__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Final CTA */
.page-support__final-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #017439, #005f2f); /* Gradient with brand color */
  margin-top: 60px;
  border-radius: 8px;
}

.page-support__final-cta h2 {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-support__final-cta p {
  color: #f0f0f0;
  font-size: 1.1em;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-support__hero-content h1 {
    font-size: 2em;
  }

  .page-support__hero-content p {
    font-size: 1em;
  }

  .page-support__button {
    padding: 10px 20px;
    font-size: 0.9em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__section,
  .page-support__contact-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-support__section h3 {
    font-size: 1.4em;
  }

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

  .page-support__final-cta {
    padding: 50px 15px;
  }

  .page-support__final-cta h2 {
    font-size: 1.8em;
  }

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

  /* Ensure content containers are responsive */
  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure buttons in groups wrap */
  .page-support__button-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between buttons */
  }
}