.page-support-faq {
  color: #333333;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px);
}

.page-support-faq__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-support-faq__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-support-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-support-faq__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-support-faq__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-support-faq__hero-button:hover {
  background-color: #e6a73c;
}

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

.page-support-faq__categories-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-support-faq__categories-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #000000;
}

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

.page-support-faq__category-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-support-faq__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support-faq__category-name {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000000;
}

.page-support-faq__category-name a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support-faq__category-name a:hover {
  color: #FCBC45;
}

.page-support-faq__category-description {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
}

.page-support-faq__accordion-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-support-faq__accordion-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-support-faq__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-support-faq__accordion-header {
  background-color: #F8F8F8;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support-faq__accordion-header:hover {
  background-color: #f0f0f0;
}

.page-support-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support-faq__accordion-item.active .page-support-faq__accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-faq__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support-faq__accordion-item.active .page-support-faq__accordion-content {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-support-faq__accordion-content p {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #444444;
}

.page-support-faq__accordion-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support-faq__accordion-content a:hover {
  text-decoration: underline;
}

.page-support-faq__cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.page-support-faq__cta-content {
  z-index: 2;
  max-width: 700px;
}

.page-support-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-support-faq__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-support-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support-faq__cta-button--contact {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support-faq__cta-button--contact:hover {
  background-color: #f0f0f0;
}

.page-support-faq__cta-button--register {
  background-color: #FCBC45;
  color: #000000;
}

.page-support-faq__cta-button--register:hover {
  background-color: #e6a73c;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support-faq__hero-title {
    font-size: 2.8em;
  }
  .page-support-faq__categories-title,
  .page-support-faq__accordion-title,
  .page-support-faq__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support-faq {
    padding-top: var(--header-offset, 80px);
  }
  .page-support-faq__hero-section {
    padding: 40px 15px;
  }
  .page-support-faq__hero-title {
    font-size: 2.2em;
  }
  .page-support-faq__hero-description {
    font-size: 1em;
  }
  .page-support-faq__categories-section,
  .page-support-faq__accordion-section,
  .page-support-faq__cta-section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-support-faq__categories-title,
  .page-support-faq__accordion-title,
  .page-support-faq__cta-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support-faq__categories-grid {
    grid-template-columns: 1fr;
  }
  .page-support-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support-faq__accordion-content {
    padding: 15px 20px;
  }
  .page-support-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support-faq__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-support-faq__hero-image img,
  .page-support-faq__category-card img,
  .page-support-faq__cta-image img {
    max-width: 100%;
    height: auto;
  }
  .page-support-faq__category-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-support-faq__hero-title {
    font-size: 1.8em;
  }
  .page-support-faq__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support-faq__categories-title,
  .page-support-faq__accordion-title,
  .page-support-faq__cta-title {
    font-size: 1.5em;
  }
  .page-support-faq__category-card {
    padding: 20px;
  }
  .page-support-faq__category-name {
    font-size: 1.3em;
  }
  .page-support-faq__accordion-header {
    font-size: 1em;
    padding: 12px 18px;
  }
  .page-support-faq__accordion-content {
    padding: 12px 18px;
  }
}