/* style/support.css */
.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-support__hero-section {
  background-color: #003366; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-button {
  display: inline-block;
  background-color: #FFCC00; /* Accent color for button */
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__hero-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Section Titles & Intros */
.page-support__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-support__faq-category {
  margin-bottom: 50px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-support__faq-category-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 15px;
}

.page-support__faq-item {
  margin-bottom: 25px;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #003366;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
}

.page-support__faq-question.active::after {
  content: '-';
}

.page-support__faq-answer {
  font-size: 1.1em;
  color: #444444;
  padding-left: 20px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-support__faq-answer a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  color: #FFCC00;
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  background-color: #003366;
  color: #ffffff;
  text-align: center;
}

.page-support__contact-section .page-support__section-title,
.page-support__contact-section .page-support__section-intro {
  color: #ffffff;
}

.page-support__contact-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-support__contact-button {
  background-color: #FFCC00;
  color: #003366;
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  min-width: 250px;
  justify-content: center;
}

.page-support__contact-button img {
  
  
  object-fit: contain;
  /* Ensure images are not filtered to change color */
  filter: none;
}

.page-support__contact-button:hover {
  background-color: #e6b800;
  transform: translateY(-5px);
}

.page-support__contact-note {
  font-size: 1em;
  margin-top: 20px;
  color: #cccccc;
}

/* Download CTA Section */
.page-support__download-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  text-align: center;
}

.page-support__download-cta-section .page-support__section-title {
  color: #FFCC00;
}

.page-support__download-cta-section .page-support__section-intro {
  color: #ffffff;
  max-width: 800px;
}

.page-support__download-cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__download-cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.2em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__faq-category-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1.3em;
  }
  .page-support__contact-button {
    font-size: 1.1em;
    min-width: unset;
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-support__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__faq-category {
    padding: 20px;
  }
  .page-support__faq-category-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__faq-answer {
    font-size: 1em;
  }
  .page-support__contact-options {
    flex-direction: column;
    gap: 20px;
  }
  .page-support__contact-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__download-cta-button {
    font-size: 1.2em;
    padding: 15px 25px;
  }
  /* Ensure content images do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.95em;
  }
  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-category-title {
    font-size: 1.3em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
  .page-support__download-cta-button {
    font-size: 1.1em;
    padding: 12px 20px;
  }
}