.page-support {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Inherit from body or shared */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Gold and Red gradient */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page-support__main-heading {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main heading */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-support__live-chat-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__live-chat-button:hover {
  background-color: #ffe066;
  transform: translateY(-3px);
}

.page-support__section-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly transparent dark background */
  position: relative;
}

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

.page-support__faq-card {
  background-color: rgba(255, 255, 255, 0.08); /* Light transparent card background */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__faq-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for FAQ titles */
  margin-bottom: 25px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-support__faq-question {
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-support__faq-answer {
  display: none;
  margin-bottom: 15px;
  color: #f0f0f0;
  padding-left: 15px;
  border-left: 3px solid #8B0000;
  margin-top: 10px;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__faq-link {
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.page-support__faq-link:hover {
  color: #ffe066;
  text-decoration: underline;
}

.page-support__faq-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-support__contact-section {
  padding: 60px 0;
  background-color: rgba(139, 0, 0, 0.4); /* Transparent red background */
  position: relative;
}

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

.page-support__contact-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-support__contact-text {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-support__contact-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-support__contact-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-support__why-choose-section {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.6); /* Darker transparent background */
}

.page-support__advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  color: #f0f0f0;
}

.page-support__advantage-item {
  background-color: rgba(255, 215, 0, 0.08); /* Very light transparent gold */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
}

.page-support__advantage-item strong {
  color: #FFD700;
}

.page-support__why-choose-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(45deg, #8B0000 0%, #FFD700 100%); /* Gold and Red gradient */
  position: relative;
  overflow: hidden;
}

.page-support__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:cta_support:1200x675:register,login,download]') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-support__cta-section .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-support__cta-button--register {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark red */
}

.page-support__cta-button--register:hover {
  background-color: #ffe066;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__cta-button--login {
  background-color: #8B0000; /* Dark red */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-support__cta-button--login:hover {
  background-color: #a00000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__cta-button--download {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__cta-button--download:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-support__cta-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__main-heading {
    font-size: 2.8em;
  }
  .page-support__section-heading {
    font-size: 2em;
  }
  .page-support__intro-text, .page-support__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px);
  }
  .page-support__main-heading {
    font-size: 2.2em;
  }
  .page-support__intro-text {
    font-size: 0.95em;
  }
  .page-support__live-chat-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-heading {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.9em;
  }
  .page-support__faq-grid, .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
  .page-support__faq-card, .page-support__contact-card {
    padding: 20px;
  }
  .page-support__faq-title {
    font-size: 1.5em;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    min-width: unset;
    width: 100%;
  }
  .page-support__hero-image img,
  .page-support__faq-image,
  .page-support__contact-image,
  .page-support__why-choose-image,
  .page-support__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-support__advantages-list {
    padding: 0 10px;
  }
  .page-support__advantage-item {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-support__main-heading {
    font-size: 1.8em;
  }
  .page-support__intro-text {
    font-size: 0.9em;
  }
  .page-support__section-heading {
    font-size: 1.5em;
  }
  .page-support__live-chat-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__faq-card, .page-support__contact-card {
    padding: 15px;
  }
}