.page-support {
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-support__hero-section {
  background-color: #1E90FF; /* Auxiliary color for hero background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 80px;
  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-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #ffffff; /* White text for contrast on dark blue */
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.page-support__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1E90FF; /* Dark blue text on gold */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #333333;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-question:hover {
  background-color: #f0f0f0;
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 10px;
}

.page-support__faq-answer p a {
  color: #1E90FF;
  text-decoration: none;
}

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

.page-support__contact-section {
  background-color: #E0F2F7; /* Light blue background */
  padding: 80px 0;
}

.page-support__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-support__contact-content {
  text-align: left;
}

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

.page-support__contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__contact-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-support__contact-button--live-chat {
  background-color: #FFD700; /* Gold button */
  color: #1E90FF; /* Dark blue text */
}

.page-support__contact-button--live-chat:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__contact-button--email {
  background-color: #1E90FF; /* Dark blue button */
  color: #ffffff; /* White text */
}

.page-support__contact-button--email:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-support__contact-phone {
  font-size: 1.1em;
  color: #333333;
  margin-top: 15px;
  font-weight: bold;
}

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

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

.page-support__resources-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

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

.page-support__resource-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.page-support__resource-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-support__resource-title {
  font-size: 1.3em;
  color: #1E90FF; /* Dark blue for resource titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__resource-description {
  font-size: 1em;
  color: #555555;
}

.page-support__resources-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }

  .page-support__hero-description {
    font-size: 1.2em;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-support__contact-content {
    text-align: center;
  }

  .page-support__contact-options {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-support__contact-button {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
  }

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

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__faq-question {
    font-size: 1.2em;
    padding: 18px 20px;
  }

  .page-support__faq-answer {
    font-size: 1em;
    padding: 0 20px 18px 20px;
  }

  .page-support__contact-options {
    flex-direction: column;
    align-items: center;
  }

  .page-support__contact-button {
    width: 100%;
    max-width: 300px;
  }

  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content area images must not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }

  /* Content area images must be at least 200px wide for display */
  .page-support__hero-image,
  .page-support__contact-image,
  .page-support__resources-image {
    min-width: 200px;
    min-height: 200px;
    /* Use max-width: 100%; height: auto; to ensure responsiveness without shrinking below 200px if the content area is smaller */
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__contact-phone {
    font-size: 1em;
  }
}