.page-support {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px; /* Adjusted padding, header offset handled by .page-support */
  background-color: #1a202c; /* Main dark background */
  overflow: hidden;
}

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

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.2em;
  color: #ffd700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-support__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-support__button--primary {
  background-color: #ffd700;
  color: #1a202c;
}

.page-support__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-support__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-support__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #ffd700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #1a202c;
}

.page-support__faq-list {
  display: grid;
  gap: 20px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-support__faq-question .page-support__faq-link {
  color: #ffd700;
  text-decoration: none;
  display: block;
  flex-grow: 1;
}

.page-support__faq-question .page-support__faq-link:hover {
  text-decoration: underline;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

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

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

.page-support__guides-section {
  padding: 60px 0;
  background-color: #0d121c; /* Body background color */
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__guide-card-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-support__guide-card-title {
  font-size: 1.5em;
  color: #ffd700;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-support__guide-card-title a {
  color: #ffd700;
  text-decoration: none;
}

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

.page-support__guide-card-description {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__contact-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a202c;
}

.page-support__contact-section .page-support__hero-actions {
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px 40px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 2em;
    margin-top: 40px;
  }
  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__faq-item.page-support__faq-item--active .page-support__faq-answer {
    max-height: 300px; /* Allow more height for mobile */
  }
  .page-support__guide-card-image {
    max-width: 100%;
  }
  /* Ensure all images within .page-support are responsive */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__faq-item {
    padding: 20px;
  }
  .page-support__guide-card {
    padding: 20px;
  }
}