.page-support {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  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; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

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

.page-support__hero-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, transform 0.3s ease;
}

.page-support__hero-cta-button--live-chat {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-support__hero-cta-button--live-chat:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

.page-support__hero-cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

.page-support__introduction-section,
.page-support__quick-links-section,
.page-support__faq-section,
.page-support__contact-section,
.page-support__resources-section,
.page-support__security-section,
.page-support__cta-section {
  padding: 60px 0;
}

.page-support__introduction-section {
  background-color: #f8f8f8;
}

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

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

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

.page-support__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__card-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-support__card-title a {
  color: #000000;
  text-decoration: none;
}

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

.page-support__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__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__card-button:hover {
  background-color: #e0a53b;
}

.page-support__faq-section {
  background-color: #f8f8f8;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  margin: 0;
  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-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-support__faq-answer.active {
  max-height: 300px; /* Adjust based on expected content length */
  padding: 15px 25px 25px;
}

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

.page-support__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-support__button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #000000;
}

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

.page-support__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

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

.page-support__button--secondary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.page-support__button--secondary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-support__contact-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__contact-icon {
  width: 250px;
  height: 167px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__contact-method-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__contact-method-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__resources-section {
  background-color: #f0f0f0;
}

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

.page-support__resource-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__resource-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-support__resource-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-support__resource-title {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 20px 10px;
  font-weight: bold;
}

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

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

.page-support__resource-text {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-support__read-more {
  display: inline-block;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  padding: 0 20px 20px;
  transition: color 0.3s ease;
}

.page-support__read-more:hover {
  color: #e0a53b;
}

.page-support__security-section {
  background-color: #FFFFFF;
}

.page-support__security-section .page-support__button {
  margin: 10px;
}

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

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

.page-support__cta-section .page-support__section-description {
  color: #F0F0F0;
}

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

.page-support__cta-section .page-support__button--login {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-support__cta-section .page-support__button--login:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-support__cta-section .page-support__button--primary {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-support__cta-section .page-support__button--primary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__card-grid,
  .page-support__contact-methods,
  .page-support__resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 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: 1.1em;
  }
  .page-support__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__hero-cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-support__introduction-section,
  .page-support__quick-links-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__resources-section,
  .page-support__security-section,
  .page-support__cta-section {
    padding: 40px 0;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__card-icon {
    width: 150px;
    height: 150px;
  }
  .page-support__contact-icon {
    width: 200px;
    height: 133px;
  }
  .page-support__resource-image {
    height: 200px;
  }
  /* Ensure content images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
  .page-support__faq-answer.active {
    max-height: 400px; /* Increased for mobile content */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 0.95em;
  }
  .page-support__hero-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__card-grid,
  .page-support__contact-methods,
  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }
  .page-support__card,
  .page-support__contact-card,
  .page-support__resource-item {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-answer.active {
    padding: 10px 20px 20px;
  }
  .page-support__button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-support__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}