/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-support__hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #0F141C; /* Slightly lighter dark for hero */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

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

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

.page-support__hero-description {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter gray for description */
  margin-bottom: 30px;
}

.page-support__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1em;
}

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

.page-support__btn--primary:hover {
  background-color: #E6C200;
  color: #0F141C;
}

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-support__btn--accent {
  background-color: #333C4A; /* Darker accent for contact buttons */
  color: #FFD700;
  border: 2px solid #333C4A;
}

.page-support__btn--accent:hover {
  background-color: #FFD700;
  color: #1A202C;
  border-color: #FFD700;
}

.page-support__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.page-support__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq {
  background-color: #1A202C;
  position: relative;
  overflow: hidden;
}

.page-support__faq-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.page-support__faq-item {
  background-color: #2A3240; /* Slightly lighter background for FAQ items */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-support__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
}

.page-support__guides {
  background-color: #0F141C;
}

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

.page-support__guide-item {
  background-color: #2A3240;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-support__guide-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support__guide-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__guide-text {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-support__guide-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__guide-link:hover {
  color: #E6C200;
}

.page-support__contact {
  background-color: #1A202C;
  position: relative;
  overflow: hidden;
}

.page-support__contact-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.page-support__contact-item {
  background-color: #2A3240;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-support__contact-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support__contact-item p {
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-support__cta {
  background: linear-gradient(135deg, #1A202C, #333C4A);
  padding: 60px 20px;
  text-align: center;
}

.page-support__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

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

.page-support__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

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

  .page-support__hero-actions {
    flex-direction: column;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__cta-title {
    font-size: 2em;
  }

  .page-support__cta-actions {
    flex-direction: column;
  }

  .page-support__faq-image {
    width: 200px;
  }

  .page-support__contact-image {
    opacity: 0.05;
  }
}

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

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__faq-answer {
    font-size: 0.9em;
  }

  .page-support__guide-title {
    font-size: 1.3em;
  }

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

  .page-support__cta-title {
    font-size: 1.8em;
  }
}