.page-support {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it can take full width */
  margin-bottom: 30px;
}

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

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

.page-support__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Using clamp for responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
}

.page-support__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

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

.page-support__cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-support__faq-section, .page-support__contact-section, .page-support__resources-section {
  padding: 60px 0;
}

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

.page-support__section-description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.page-support__faq-item {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
}

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

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

.page-support__view-all-faq-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 0.95em;
  border: none;
  cursor: pointer;
}

.page-support__view-all-faq-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-support__contact-card {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
  width: 200px; /* Minimum size */
  height: 200px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__card-title {
  font-size: 1.4em;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 25px;
}

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

.page-support__card-button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.page-support__resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__resource-item {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  padding: 15px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-support__resource-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-support__resource-item a {
  text-decoration: none;
  color: #2F6BFF; /* Main Color */
  font-size: 1.1em;
  font-weight: 500;
  display: block;
}

.page-support__resource-item a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 30px;
  }

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

  .page-support__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-support__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-support__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__faq-item, .page-support__contact-card, .page-support__resource-item {
    padding: 20px;
  }

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

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

  .page-support__contact-icon {
    width: 200px; /* Ensure minimum size */
    height: 200px; /* Ensure minimum size */
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding-bottom: 20px;
  }

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

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

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

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