.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 space for fixed header */
}

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

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

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF; /* White text for dark overlay/image */
  padding: 0;
}

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

.page-support__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-support__hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-support__hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-support__hero-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;
  min-width: 180px;
  text-align: center;
}

.page-support__hero-button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__hero-button--primary:hover {
  background-color: #e0a73c;
}

.page-support__hero-button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-support__hero-button--secondary:hover {
  background-color: #f0f0f0;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

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

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

.page-support__faq-card-title a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

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

.page-support__faq-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-support__faq-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__faq-card-button:hover {
  background-color: #e0a73c;
}

.page-support__cta-faq {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-support__cta-faq-text {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #000000;
}

.page-support__cta-faq-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__cta-faq-button:hover {
  background-color: #333333;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-support__contact-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-support__contact-info {
  flex: 1;
}

.page-support__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-support__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.page-support__contact-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-support__contact-details {
  display: flex;
  flex-direction: column;
}

.page-support__contact-label {
  font-size: 0.9em;
  color: #888888;
}

.page-support__contact-link {
  font-size: 1.1em;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

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

.page-support__contact-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.page-support__resources-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-support__resource-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-support__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-support__resource-title {
  font-size: 1.4em;
  padding: 20px 20px 10px;
}

.page-support__resource-title a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-support__resource-title a:hover {
  color: #FCBC45;
}

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

.page-support__resource-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-support__resource-button:hover {
  background-color: #e0a73c;
}

/* CTA Section */
.page-support__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__cta-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;
  min-width: 180px;
  text-align: center;
}

.page-support__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-support__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-support__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-support__cta-button--login:hover {
  background-color: #e0a73c;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-support__contact-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-support__contact-info, .page-support__contact-image-wrapper {
    width: 100%;
  }
  .page-support__contact-image {
    max-width: 600px;
  }
  .page-support__resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .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__section-title {
    font-size: 2em;
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__hero-image,
  .page-support__contact-image,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure images in content area do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-button {
    width: 100%;
    min-width: unset;
  }
  .page-support__cta-button {
    width: 100%;
    min-width: unset;
  }
  .page-support__faq-card-title {
    font-size: 1.3em;
  }
  .page-support__resource-title {
    font-size: 1.2em;
  }
  .page-support__contact-list {
    margin-top: 20px;
  }
  .page-support__contact-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .page-support__contact-icon {
    margin-bottom: 5px;
  }
  .page-support__contact-details {
    align-items: center;
  }
}