.page-support {
  color: #ffffff; /* Text color for dark body background #0d0d0d */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px);
}

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

.page-support__section-title,
.page-support__call-to-action-title {
  font-size: 2.8em;
  color: #FFD700; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
  text-align: center;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4); /* Darken image for text readability, not changing color */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-support__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

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

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

.page-support__hero-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__hero-button--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-support__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__hero-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.page-support__hero-button--secondary:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background */
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px 30px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 500px; /* Adjust as needed */
}

.page-support__faq-answer p {
  margin-top: 15px;
}

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

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

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

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-support__contact-icon {
  width: 200px; /* Minimum size requirement */
  height: 200px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
}

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

.page-support__contact-card-description {
  font-size: 1.05em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #8B0000;
  color: #FFD700;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-support__contact-button:hover {
  background-color: #FFD700;
  color: #8B0000;
}

/* Guides Section */
.page-support__guides-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05);
}

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

.page-support__guide-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-support__guide-card h3 {
  padding: 20px 25px 0;
}

.page-support__guide-title a {
  font-size: 1.5em;
  color: #FFD700;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.page-support__guide-title a:hover {
  color: #e6c200;
}

.page-support__guide-description {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 25px 25px;
}

/* Call to Action Section */
.page-support__call-to-action-section {
  padding: 100px 20px;
  background: linear-gradient(45deg, #8B0000, #b30000);
  text-align: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-support__call-to-action-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__call-to-action-title {
  color: #FFD700;
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-support__call-to-action-description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-support__call-to-action-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 45px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.page-support__call-to-action-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

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

  .page-support__section-title,
  .page-support__call-to-action-title {
    font-size: 2.2em;
  }
}

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

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

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

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

  .page-support__hero-button {
    width: 100%;
    max-width: 300px;
  }

  .page-support__section-title,
  .page-support__call-to-action-title {
    font-size: 1.8em;
  }

  .page-support__section-subtitle,
  .page-support__call-to-action-description {
    font-size: 1em;
  }

  .page-support__faq-section,
  .page-support__contact-methods-section,
  .page-support__guides-section,
  .page-support__call-to-action-section {
    padding: 50px 0;
  }

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

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

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

  .page-support__contact-icon {
    width: 200px;
    height: 200px;
  }

  .page-support__guide-image {
    height: 200px;
  }

  /* Ensure all content images are responsive and not smaller than 200px */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon, .page-support__guide-image {
      min-width: 200px;
      min-height: 200px;
  }
}

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

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

  .page-support__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }

  .page-support__section-title,
  .page-support__call-to-action-title {
    font-size: 1.6em;
  }

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

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

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

  .page-support__call-to-action-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}