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

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #F4F7FB;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensures image doesn't overflow */
  margin-bottom: 20px;
}

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

.page-support__hero-content {
  text-align: center;
  padding: 0 20px 40px;
  max-width: 800px;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

.page-support__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-support__cta-button--secondary {
  background: #6FA3FF;
  box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-support__cta-button--secondary:hover {
  background: #4A8BFF;
  box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
}

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em); /* Responsive font size for H2 */
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-support__section-description {
  font-size: 1.05em;
  line-height: 1.5;
  color: #1F2D3D;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.page-support__contact-section, .page-support__faq-section, .page-support__guide-section {
  padding: 40px 0;
}

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

.page-support__method-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-support__method-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-support__method-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
  background: #6FA3FF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-support__method-button:hover {
  background: #2F6BFF;
}

.page-support__faq-list {
  margin-top: 30px;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

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

.page-support__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

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

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

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

.page-support__guide-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #1F2D3D;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-support__guide-card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
}

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

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

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

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

  .page-support__section-description {
    font-size: 0.95em;
    padding: 0 10px;
  }

  .page-support__method-card, .page-support__guide-card {
    padding: 20px;
  }

  .page-support__method-image, .page-support__faq-item img, .page-support__guide-card img {
    max-width: 100%;
    height: auto;
  }

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

  /* Ensure all images in .page-support are responsive and don't overflow */
  .page-support img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}

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

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

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

  .page-support__method-title, .page-support__guide-card-title {
    font-size: 1.2em;
  }

  .page-support__method-text, .page-support__guide-card-text, .page-support__faq-question, .page-support__faq-answer {
    font-size: 0.9em;
  }
}