.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: 10px 20px 40px;
  background-color: #F4F7FB;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

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

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

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

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

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-support__faq-section {
  padding: 50px 20px;
  background-color: #F4F7FB;
}

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

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

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

.page-support__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

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

.page-support__faq-question {
  font-size: 1.3em;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

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

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

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

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

.page-support__faq-answer p {
  margin-bottom: 10px;
}

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

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

.page-support__read-more-link {
  display: inline-block;
  margin-top: 10px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-support__read-more-link:hover {
  text-decoration: underline;
}

.page-support__cta-section {
  padding: 60px 20px;
  background-color: #6FA3FF; /* Accent Color */
  text-align: center;
  color: #FFFFFF;
}

.page-support__cta-title {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

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

  .page-support__main-title {
    line-height: 1.3;
  }

  .page-support__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-support__faq-answer {
    font-size: 0.95em;
  }

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

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

  .page-support__hero-image-wrapper img,
  .page-support__faq-section img,
  .page-support__cta-section img,
  .page-support__container img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-support__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

  .page-support__faq-answer {
    font-size: 0.9em;
  }

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

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