.page-support {
  color: #333333; /* Dark text for light body background */
}

.page-support__hero-section {
  background-color: var(--background-color, #FFFFFF);
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: var(--primary-color, #000000);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

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

.page-support__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, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-support__button--register {
  background-color: var(--primary-color, #000000);
  color: #FFFFFF;
  border: 2px solid var(--primary-color, #000000);
}

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

.page-support__button--login {
  background-color: var(--primary-color, #000000);
  color: #FCBC45;
  border: 2px solid #FCBC45;
}

.page-support__button--login:hover {
  background-color: #333333;
  color: #FFDA82;
  transform: translateY(-2px);
}

.page-support__button--contact {
  background-color: var(--primary-color, #000000);
  color: #FFFFFF;
  border: 2px solid var(--primary-color, #000000);
}

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

.page-support__faq-section, .page-support__contact-section, .page-support__quick-links-section {
  background-color: var(--background-color, #FFFFFF);
  padding: 60px 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-support__faq-container, .page-support__contact-container, .page-support__quick-links-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__faq-title, .page-support__contact-title, .page-support__quick-links-title {
  font-size: 2.8em;
  color: var(--primary-color, #000000);
  text-align: center;
  margin-bottom: 40px;
}

.page-support__faq-intro, .page-support__contact-description {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

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

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: var(--primary-color, #000000);
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

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

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

.page-support__faq-answer {
  font-size: 1em;
  color: #444444;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

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

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

.page-support__faq-link {
  color: var(--primary-color, #000000);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-support__method-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

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

.page-support__method-icon {
  width: 250px; /* Min 200px, so 250px is fine */
  height: 187px; /* Maintain aspect ratio for 800x600 image */
  margin-bottom: 25px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__method-title {
  font-size: 1.8em;
  color: var(--primary-color, #000000);
  margin-bottom: 15px;
}

.page-support__method-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-support__quick-links-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

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

.page-support__quick-links-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  max-width: 1000px;
}

.page-support__quick-links-item a {
  font-size: 1.1em;
  color: var(--primary-color, #000000);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__quick-links-item a:hover {
  background-color: #f0f0f0;
  color: #333333;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__faq-title, .page-support__contact-title, .page-support__quick-links-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-support__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 40px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__faq-title, .page-support__contact-title, .page-support__quick-links-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-support__faq-section, .page-support__contact-section, .page-support__quick-links-section {
    padding: 40px 15px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    max-height: 400px; /* Allow more height for mobile content */
  }
  .page-support__method-card {
    padding: 20px;
  }
  .page-support__method-icon {
    width: 200px; /* Ensure min size for mobile */
    height: 150px;
  }
  .page-support__method-title {
    font-size: 1.5em;
  }
  .page-support__quick-links-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  /* Mobile content area images must be constrained */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__faq-title, .page-support__contact-title, .page-support__quick-links-title {
    font-size: 1.6em;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__method-icon {
    width: 200px;
    height: 150px;
  }
}