/* style/support-technical-support-faq.css */
.page-support-technical-support-faq {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

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

.page-support-technical-support-faq__section {
  padding: 60px 0;
  text-align: center;
}

.page-support-technical-support-faq__section:nth-of-type(even) {
  background-color: #1a2a44; /* Slightly lighter dark blue for alternating sections */
}

.page-support-technical-support-faq__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2c4a7e 100%); /* Gradient for hero */
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support-technical-support-faq__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-support-technical-support-faq__hero-section > .page-support-technical-support-faq__container {
  position: relative;
  z-index: 1;
}

.page-support-technical-support-faq__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support-technical-support-faq__hero-subtitle {
  font-size: 1.25em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-support-technical-support-faq__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support-technical-support-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-support-technical-support-faq__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-support-technical-support-faq__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-support-technical-support-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-support-technical-support-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support-technical-support-faq__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #C0C0C0;
}

.page-support-technical-support-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
}

.page-support-technical-support-faq__issue-card {
  background-color: #1a2a44; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2c4a7e;
}

.page-support-technical-support-faq__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-support-technical-support-faq__issue-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Gold tint for icons */
}

.page-support-technical-support-faq__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support-technical-support-faq__card-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-support-technical-support-faq__faq .page-support-technical-support-faq__accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-support-technical-support-faq__accordion-item {
  background-color: #1a2a44;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2c4a7e;
}

.page-support-technical-support-faq__accordion-header {
  background-color: #2c4a7e; /* Slightly lighter blue for header */
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support-technical-support-faq__accordion-header:hover,
.page-support-technical-support-faq__accordion-header.active {
  background-color: #3e5f90;
}

.page-support-technical-support-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-support-technical-support-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-technical-support-faq__accordion-content {
  padding: 0 25px;
  background-color: #1a2a44;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support-technical-support-faq__accordion-content.show {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

.page-support-technical-support-faq__accordion-content p {
  margin: 0;
  color: #B0B0B0;
}

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

.page-support-technical-support-faq__method-card {
  background-color: #1a2a44;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2c4a7e;
  text-align: center;
}

.page-support-technical-support-faq__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-support-technical-support-faq__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%);
}

.page-support-technical-support-faq__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-support-technical-support-faq__btn--outline:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-support-technical-support-faq__contact-note {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-top: 50px;
}

.page-support-technical-support-faq__tip-list {
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
  list-style: none;
  padding-left: 0;
}

.page-support-technical-support-faq__tip-list li {
  background-color: #1a2a44;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-support-technical-support-faq__tip-list li strong {
  color: #FFD700;
}

.page-support-technical-support-faq__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #2c4a7e;
  border-radius: 12px;
  color: #FFFFFF;
}

.page-support-technical-support-faq__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 500;
}

.page-support-technical-support-faq__why-xn88 {
  background-color: #0A192F;
}

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

.page-support-technical-support-faq__feature-item {
  background-color: #1a2a44;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #2c4a7e;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-support-technical-support-faq__feature-item:hover {
  transform: translateY(-5px);
}

.page-support-technical-support-faq__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(120%) contrast(100%);
}

.page-support-technical-support-faq__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-support-technical-support-faq__feature-text {
  color: #B0B0B0;
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support-technical-support-faq__hero-title {
    font-size: 2.8em;
  }
  .page-support-technical-support-faq__section-title {
    font-size: 2em;
  }
  .page-support-technical-support-faq__grid,
  .page-support-technical-support-faq__contact-methods,
  .page-support-technical-support-faq__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support-technical-support-faq__hero-title {
    font-size: 2.2em;
  }
  .page-support-technical-support-faq__hero-subtitle {
    font-size: 1.1em;
  }
  .page-support-technical-support-faq__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support-technical-support-faq__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-support-technical-support-faq__section {
    padding: 40px 0;
  }
  .page-support-technical-support-faq__section-title {
    font-size: 1.8em;
  }
  .page-support-technical-support-faq__issue-card, 
  .page-support-technical-support-faq__method-card, 
  .page-support-technical-support-faq__feature-item {
    padding: 25px;
  }
  .page-support-technical-support-faq__card-title {
    font-size: 1.4em;
  }
  .page-support-technical-support-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support-technical-support-faq__accordion-content.show {
    padding: 10px 20px 20px 20px;
  }
  .page-support-technical-support-faq__cta-bottom {
    padding: 30px;
  }
  .page-support-technical-support-faq__cta-bottom p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-support-technical-support-faq__hero-title {
    font-size: 1.8em;
  }
  .page-support-technical-support-faq__hero-subtitle {
    font-size: 1em;
  }
  .page-support-technical-support-faq__btn {
    width: 90%;
  }
  .page-support-technical-support-faq__section-title {
    font-size: 1.5em;
  }
  .page-support-technical-support-faq__issue-icon, 
  .page-support-technical-support-faq__method-icon, 
  .page-support-technical-support-faq__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-support-technical-support-faq__card-title {
    font-size: 1.2em;
  }
  .page-support-technical-support-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-support-technical-support-faq__accordion-content.show {
    padding: 8px 15px 15px 15px;
  }
  .page-support-technical-support-faq__tip-list li {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  .page-support-technical-support-faq__cta-bottom p {
    font-size: 1em;
  }
}