.page-support {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Ensure some space above footer */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Pull content up over the image slightly for visual flow */
  background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background for text readability */
  border-radius: 8px;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-support__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

.page-support__section-title {
  font-size: 2.2em;
  color: #1F2D3D;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-support__faq-section, .page-support__contact-options, .page-support__guides-section {
  padding: 40px 0;
  background-color: #F4F7FB;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-support__faq-answer a {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-support__view-all-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__view-all-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

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

.page-support__contact-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-support__contact-icon {
  width: 100%;
  max-width: 250px; /* Ensure images are not too small */
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 4px;
}

.page-support__card-title {
  font-size: 1.4em;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__card-description {
  font-size: 0.95em;
  color: #000000;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

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

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.page-support__guide-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-support__guide-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-support__guide-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__guide-title a {
  color: #1F2D3D;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-support__guide-date {
  font-size: 0.9em;
  color: #6FA3FF;
  margin-bottom: 10px;
}

.page-support__guide-excerpt {
  font-size: 0.95em;
  color: #000000;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-support__read-more {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__read-more:hover {
  color: #4A8BFF;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-support__hero-content {
    margin-top: -50px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-support__description {
    font-size: 1em;
  }

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

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__contact-cards,
  .page-support__guide-list {
    grid-template-columns: 1fr;
  }

  .page-support__contact-icon,
  .page-support__guide-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Allow height to adjust */
    min-height: 200px; /* Ensure min height */
  }

  /* Force all images in content area to be responsive and not too small */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__main-title {
    font-size: clamp(1.5em, 8vw, 2em);
  }

  .page-support__description {
    font-size: 0.9em;
  }

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

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__guide-card {
    padding: 15px;
  }
}