.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #0A192F;
}

.page-support .highlight {
  color: #FFD700;
  font-weight: bold;
}

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

/* Hero Section */
.page-support__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0A192F, #1A304D);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-support__search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__search-input {
  width: 70%;
  padding: 12px 20px;
  border: 1px solid #FFD700;
  border-radius: 5px 0 0 5px;
  font-size: 1em;
  background-color: #1A304D;
  color: #E0E0E0;
}

.page-support__search-input::placeholder {
  color: #888;
}

.page-support__search-button {
  width: 30%;
  padding: 12px 20px;
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__search-button:hover {
  background-color: #E0B500;
}

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

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}

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

/* Section common styles */
.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

.page-support__faq-item {
  background-color: #1A304D;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #334760;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) 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__faq-answer p {
  margin-bottom: 15px;
}

.page-support__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #0A192F;
  border: 1px solid #FFD700;
}

.page-support__btn--inline:hover {
  background-color: #E0B500;
  border-color: #E0B500;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #1A304D;
}

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

.page-support__contact-card {
  background-color: #0A192F;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid #334760;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-support__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-support__contact-card p {
  color: #C0C0C0;
  margin-bottom: 25px;
}

/* Guides Section */
.page-support__guides-section {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-support__guide-card {
  background-color: #1A304D;
  border-radius: 10px;
  padding: 25px;
  text-decoration: none;
  color: #E0E0E0;
  border: 1px solid #334760;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-support__guide-card p {
  font-size: 0.95em;
  color: #C0C0C0;
}

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

  .page-support__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-support__btn {
    width: 100%;
  }

  .page-support__search-box {
    flex-direction: column;
    align-items: center;
  }

  .page-support__search-input,
  .page-support__search-button {
    width: 100%;
    border-radius: 5px;
  }

  .page-support__search-input {
    margin-bottom: 10px;
  }

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

  .page-support__faq-grid,
  .page-support__contact-options,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    padding: 60px 15px;
  }

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

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

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__guide-card {
    padding: 20px;
  }

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

  .page-support__card-title {
    font-size: 1.5em;
  }
}