.page-support {
  padding-top: 10px; /* Small top padding for the first section, relying on body padding-top for header offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #FFFFFF;
  margin-bottom: 30px;
  border-radius: 12px;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-support__hero-content {
  max-width: 900px;
}

.page-support__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 15px;
}

.page-support__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-support__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px #A5C4FF;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #A5C4FF;
}

.page-support__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

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

.page-support__faq-list {
  display: grid;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-support__faq-question {
  font-size: 1.25em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 15px;
  cursor: pointer; /* Implies accordion functionality, but JS will handle interaction */
}

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-support__faq-question.active + .page-support__faq-answer {
  max-height: 500px; /* Arbitrary large value to allow content to show */
}

.page-support__additional-help {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #D6E2FF;
}

.page-support__additional-help p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-support__contact-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px #A5C4FF;
  border: none;
  cursor: pointer;
  font-size: 0.95em;
}

.page-support__contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #A5C4FF;
}

.page-support__contact-info-section {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}

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

.page-support__contact-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 250px; /* Enforcing minimum size for content images */
  height: 187px; /* 4:3 aspect ratio for 250px width */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-support__contact-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__action-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #D6E2FF;
  border-radius: 6px;
  background-color: #F8F8F8;
}

.page-support__action-link:hover {
  color: #6FA3FF;
  border-color: #6FA3FF;
}

@media (max-width: 1024px) {
  .page-support__hero-section {
    padding: 30px 15px;
  }
  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-question {
    font-size: 1.15em;
  }
  .page-support__contact-icon {
    width: 220px;
    height: 165px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    flex-direction: column;
    padding: 20px 15px;
  }
  .page-support__hero-image {
    margin-bottom: 20px;
  }
  .page-support__main-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 12px 24px;
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-support__faq-item {
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-details {
    grid-template-columns: 1fr;
  }
  .page-support__contact-icon {
    width: 200px; /* Minimum required size for content images */
    height: 150px; /* 4:3 aspect ratio */
  }
  /* Ensure all content area images are responsive and don't cause overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 15px 10px;
  }
  .page-support__main-title {
    font-size: clamp(1.4em, 7vw, 2em);
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__section-title {
    font-size: 1.6em;
    padding-top: 30px;
  }
  .page-support__faq-question {
    font-size: 1em;
  }
  .page-support__contact-item {
    padding: 20px;
  }
}