.page-support {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for text on light background */
  line-height: 1.6;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%); /* W88 Red to Gold gradient */
  color: #FFFFFF; /* White text on dark gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Subtle overlay for text readability */
  z-index: 0;
}

.page-support__hero > * {
  position: relative;
  z-index: 1;
}

.page-support__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__subtitle {
  font-size: 1.25em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #EEEEEE;
}

.page-support__highlight {
  color: #FFCC00; /* Gold for highlighting keywords */
  font-weight: bold;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1em;
}

.page-support__btn--primary {
  background-color: #FFCC00; /* Gold button */
  color: #CC0000; /* Red text on gold button */
  border: 2px solid #FFCC00;
}

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

.page-support__btn--secondary {
  background-color: transparent;
  color: #CC0000; /* Red text */
  border: 2px solid #CC0000; /* Red border */
}

.page-support__btn--secondary:hover {
  background-color: #CC0000; /* Red background on hover */
  color: #FFFFFF; /* White text on hover */
}

.page-support__btn--link {
  color: #CC0000;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-support__btn--link:hover {
  color: #FFCC00;
}

.page-support__btn--outline {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-left: 15px;
}

.page-support__btn--outline:hover {
  background-color: #FFCC00;
  color: #CC0000;
}

.page-support__faq-section, .page-support__guides-section, .page-support__contact-section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light gray background */
}

.page-support__faq-section {
  background-color: #FFFFFF;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #CC0000; /* W88 Red for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  width: 100%;
  background-color: #f2f2f2; /* Lighter background for question */
  color: #333333;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #e6e6e6;
}

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

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

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
  color: #555555;
}

.page-support__faq-answer .page-support__btn--secondary {
  margin-top: 10px;
}

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-support__guide-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-support__guide-title {
  font-size: 1.5em;
  color: #CC0000;
  margin: 20px 15px 10px;
}

.page-support__guide-text {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
}

.page-support__contact-section {
  background-color: #333333; /* Dark background for contact section */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-support__contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(204, 0, 0, 0.7), rgba(255, 204, 0, 0.7)); /* Red-Gold overlay */
  z-index: 0;
}

.page-support__contact-section > * {
  position: relative;
  z-index: 1;
}

.page-support__contact-section .page-support__section-title {
  color: #FFCC00; /* Gold title on dark background */
}

.page-support__contact-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #EEEEEE;
}

.page-support__contact-buttons {
  margin-bottom: 40px;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

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

  .page-support__subtitle {
    font-size: 1.1em;
  }

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

  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-support__faq-answer.open {
    padding: 10px 20px 20px;
  }

  .page-support__guide-grid {
    grid-template-columns: 1fr;
  }

  .page-support__btn--outline {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-support__contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-support__subtitle {
    font-size: 1em;
  }

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

  .page-support__faq-question {
    padding: 12px 15px;
  }

  .page-support__faq-answer.open {
    padding: 8px 15px 15px;
  }
}