/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensure consistency with body background */
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-support__btn-primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
}

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

.page-support__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Hero Section */
.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Apply header offset */
  background-color: #0A192F;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content-wrapper {
  max-width: 900px;
  z-index: 2;
  position: relative;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.6);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-support__faq-item {
  background-color: #0A192F;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A192F;
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #1a2f4d;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #f0f0f0;
  background-color: #1a2f4d;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 15px 25px;
}

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

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-support__faq-image {
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.page-support__contact-card {
  background-color: #1a2f4d;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__contact-card-description {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__contact-image {
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Troubleshooting Section */
.page-support__troubleshooting-section {
  padding: 60px 0;
  background-color: #000000;
}

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

.page-support__troubleshooting-card {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__troubleshooting-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-support__troubleshooting-card-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-support__troubleshooting-card-description {
  color: #f0f0f0;
}

.page-support__troubleshooting-image {
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Safety Section */
.page-support__safety-section {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.page-support__safety-card {
  background-color: #1a2f4d;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__safety-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-support__safety-card-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-support__safety-card-description {
  color: #f0f0f0;
}

.page-support__safety-image {
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* Feedback Section */
.page-support__feedback-section {
  padding: 60px 0;
  background-color: #000000;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-intro {
    font-size: 1em;
    padding: 0 15px;
  }

  /* Images responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-support__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 15px;
  }
  /* Buttons responsive */
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__contact-methods,
  .page-support__troubleshooting-grid,
  .page-support__safety-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__troubleshooting-section,
  .page-support__safety-section,
  .page-support__feedback-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-support__container {
    padding: 0;
  }
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__troubleshooting-card,
  .page-support__safety-card {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-support__faq-question,
  .page-support__faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
}