.page-support {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-support__hero-section {
  padding-top: 10px; /* Adhering to fixed header rule */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #F4F7FB;
  padding-bottom: 40px;
}

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

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

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

.page-support__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  /* No fixed font-size, relying on font-weight and line-height */
}

.page-support__hero-description {
  font-size: 1.125rem;
  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;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  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 15px;
}

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

.page-support__section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

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

.page-support__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-support__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-support__item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-support__item-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-support__contact-description {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
}

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

.page-support__method-card {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 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 25px rgba(0, 0, 0, 0.1);
}

.page-support__method-icon {
  width: 250px; /* Ensuring min 200px */
  height: 187px; /* For 4:3 aspect ratio, ensuring min 200px height */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__method-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

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

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

.page-support__faq-item {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-support__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-support__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-support__section-title {
    font-size: clamp(1.8rem, 5vw, 2.25rem);
  }

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

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

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

  .page-support__grid-item,
  .page-support__method-card,
  .page-support__faq-item {
    padding: 20px;
  }

  /* Mobile overflow prevention for all images */
  .page-support img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

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

  .page-support__cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .page-support__method-icon {
    width: 200px; /* Min width check */
    height: 150px; /* Min height check, maintaining ratio for 400x300 */
  }
}