.page-support {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-support__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-support__hero-button:first-of-type {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

.page-support__hero-button:first-of-type:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-support__hero-button--secondary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-support__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-title--left {
  text-align: left;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-support__faq-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__faq-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__faq-card-link {
  text-decoration: none;
  color: inherit;
}

.page-support__faq-card-link:hover {
  color: #FCBC45;
}

.page-support__faq-card-text {
  color: #666666;
  font-size: 1em;
}

.page-support__detailed-content {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-support__article {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}

.page-support__article:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-support__article-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-support__sub-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__article-text {
  color: #333333;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-support__article-image-wrapper {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-support__article-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-support__contact-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-support__contact-section .page-support__section-title {
  color: #FFFFFF;
}

.page-support__contact-section .page-support__section-description {
  color: #f0f0f0;
}

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

.page-support__contact-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, transform 0.2s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-support__contact-button--livechat {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-support__contact-button--livechat:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-support__contact-button--email {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.page-support__contact-button--email:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-support__contact-button--faq {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support__contact-button--faq:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-support__contact-image-wrapper {
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@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: 1em;
  }
  .page-support__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px 15px 5px;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-support__article-title {
    font-size: 1.8em;
  }
  .page-support__sub-title {
    font-size: 1.3em;
  }
  .page-support__article-text {
    font-size: 0.95em;
  }
  .page-support__contact-button {
    width: 100%;
    margin-bottom: 15px;
  }
  /* Mobile content area image constraint */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__article-image {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-button {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__article-title {
    font-size: 1.5em;
  }
  .page-support__sub-title {
    font-size: 1.2em;
  }
}