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

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #F4F7FB;
}

.page-support__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

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

.page-support__hero-title {
  font-weight: bold;
  line-height: 1.2;
  color: #1F2D3D;
  margin-bottom: 15px;
}

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

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

.page-support__hero-cta:hover,
.page-support__option-cta:hover,
.page-support__faq-cta:hover,
.page-support__resource-cta:hover,
.page-support__cta-button:hover {
  opacity: 0.9;
}

.page-support__intro-section,
.page-support__contact-options,
.page-support__faq-section,
.page-support__resources-section,
.page-support__cta-section {
  padding: 40px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-support__intro-section .page-support__container,
.page-support__contact-options .page-support__container,
.page-support__faq-section .page-support__container,
.page-support__resources-section .page-support__container,
.page-support__cta-section .page-support__container {
  text-align: center;
}

.page-support__intro-title,
.page-support__contact-title,
.page-support__faq-title,
.page-support__resources-title,
.page-support__cta-title {
  color: #1F2D3D;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__intro-text,
.page-support__faq-intro,
.page-support__resources-intro,
.page-support__cta-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-support__option-card,
.page-support__resource-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__option-image,
.page-support__resource-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__option-heading,
.page-support__resource-heading {
  color: #1F2D3D;
  font-weight: bold;
  margin-bottom: 10px;
}

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__intro-title,
  .page-support__contact-title,
  .page-support__faq-title,
  .page-support__resources-title,
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__options-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__hero-image,
  .page-support__option-image,
  .page-support__resource-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__intro-title,
  .page-support__contact-title,
  .page-support__faq-title,
  .page-support__resources-title,
  .page-support__cta-title {
    font-size: 1.5em;
  }
  .page-support__hero-cta,
  .page-support__option-cta,
  .page-support__faq-cta,
  .page-support__resource-cta,
  .page-support__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support__intro-section,
  .page-support__contact-options,
  .page-support__faq-section,
  .page-support__resources-section,
  .page-support__cta-section {
    padding: 30px 0;
  }
  .page-support__container {
    padding: 15px;
  }
}