.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); /* Fixed header offset for desktop */
}

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

.page-support__hero-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

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

.page-support__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  min-width: 200px;
}

.page-support__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__button--primary:hover {
  background-color: #e0a73b;
  border-color: #e0a73b;
}

.page-support__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color */
  border: 2px solid #000000;
}

.page-support__button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-support__button--tertiary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-support__button--tertiary:hover {
  background-color: #f0f0f0;
}

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

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-support__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  color: #555555;
  font-size: 1em;
}

.page-support__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__faq-cta {
  text-align: center;
}

.page-support__faq-cta-text {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-support__contact-options-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

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

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

.page-support__contact-icon {
  width: 250px; /* Enforce min width */
  height: 180px; /* Enforce min height */
  object-fit: contain;
  margin-bottom: 25px;
}

.page-support__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__card-description {
  color: #555555;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-support__additional-info-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-support__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.page-support__info-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-support__info-item:hover {
  background-color: #f0f0f0;
}

.page-support__info-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.page-support__info-item a:hover {
  color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 40px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
  }
  .page-support__faq-grid, .page-support__contact-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure images do not overflow on mobile */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__contact-icon {
    width: 100%; /* Ensure it takes full width of card */
    height: auto;
    max-height: 250px; /* Maintain aspect ratio, set a max height */
    min-width: 200px;
    min-height: 200px;
  }
  .page-support__info-list {
    grid-template-columns: 1fr;
  }
  .page-support__contact-card, .page-support__faq-item, .page-support__info-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}