.page-support {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Text Main */
  background-color: #F5F7FA; /* Background */
  line-height: 1.6;
}

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

.page-support__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.page-support__hero-content {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.95); /* Light background for readability */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: -100px; /* Overlap with image for visual effect */
  position: relative;
  z-index: 1;
}

.page-support__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #E53935; /* Main color */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-support__description {
  font-size: 18px;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-contact,
.page-support__btn-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
  color: #ffffff;
  border: none;
}

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

.page-support__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #E53935; /* Main color */
  border: 2px solid #E53935;
}

.page-support__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

.page-support__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #E53935; /* Main color */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-intro {
  font-size: 17px;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-support__contact-section {
  padding: 60px 20px;
}

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

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

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

.page-support__contact-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  object-fit: cover;
}

.page-support__card-title {
  font-size: 24px;
  color: #E53935; /* Main color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__card-text {
  font-size: 16px;
  color: #333333;
  margin-bottom: 25px;
}

.page-support__btn-contact {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
  color: #ffffff;
  border: none;
  padding: 12px 25px;
}

.page-support__btn-contact:hover {
  opacity: 0.9;
}

.page-support__faq-section {
  padding: 60px 20px;
  background-color: #F5F7FA;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #E0E0E0; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-support__faq-item summary.page-support__faq-question::-webkit-details-marker {
  display: none;
}

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #f8f8f8;
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #E53935; /* Main color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 20px;
  background: #fefefe;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #333333;
}

.page-support__faq-answer p {
  margin: 0;
}

.page-support__faq-cta {
  text-align: center;
  margin-top: 40px;
}

.page-support__guides-section {
  padding: 60px 20px;
}

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

.page-support__guide-card {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
}

.page-support__guide-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  object-fit: cover;
}

.page-support__guide-card .page-support__card-title {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.page-support__guide-card .page-support__card-title a {
  color: #E53935; /* Main color */
  text-decoration: none;
}

.page-support__guide-card .page-support__card-title a:hover {
  text-decoration: underline;
}

.page-support__guide-card .page-support__card-text {
  font-size: 15px;
  text-align: left;
  margin-bottom: 20px;
}

.page-support__btn-link {
  color: #FF5A4F; /* Auxiliary color */
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  border: none;
  background: transparent;
  padding: 0;
}

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

.page-support__commitment-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E53935 0%, #FF5A4F 100%); /* Main & Auxiliary colors */
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-support__commitment-section .page-support__section-title,
.page-support__commitment-section .page-support__section-intro {
  color: #ffffff;
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-support__commitment-content {
  flex: 1;
}

.page-support__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support__commitment-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4;
}

.page-support__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: #E53935;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-support__icon--check::before {
  content: '✓';
}

.page-support__commitment-image {
  flex-shrink: 0;
  width: 50%;
  max-width: 500px;
}

.page-support__commitment-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
  object-fit: cover;
}

/* General image responsiveness */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-support__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-support__main-title {
    font-size: clamp(24px, 3.8vw, 40px);
  }
  .page-support__description {
    font-size: 16px;
  }
  .page-support__section-title {
    font-size: clamp(22px, 3vw, 32px);
  }
  .page-support__contact-methods, .page-support__guides-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-support__faq-qtext {
    font-size: 17px;
  }
  .page-support__commitment-section {
    flex-direction: column;
    text-align: center;
  }
  .page-support__commitment-section .page-support__section-title,
  .page-support__commitment-section .page-support__section-intro {
    text-align: center;
  }
  .page-support__commitment-content {
    margin-bottom: 30px;
  }
  .page-support__commitment-list {
    align-items: flex-start;
  }
  .page-support__commitment-list li {
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
  }
  .page-support__commitment-image {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-support__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__hero-section {
    padding-top: 10px;
  }

  .page-support__hero-image {
    height: auto;
    aspect-ratio: 16/9; /* Maintain aspect ratio for smaller screens */
    overflow: hidden;
  }

  .page-support__hero-image img {
    object-fit: contain !important; /* Prevent cropping on mobile */
    width: 100% !important;
    height: auto !important;
  }

  .page-support__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-support__main-title {
    font-size: clamp(24px, 7vw, 36px);
    text-align: center;
  }

  .page-support__description {
    font-size: 15px;
    text-align: center;
  }

  .page-support__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    padding: 0 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-contact,
  .page-support__btn-link,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__section-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .page-support__section-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px; /* Ensure content area does not overflow */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

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

  .page-support__card-title {
    font-size: 20px;
  }

  .page-support__card-text {
    font-size: 14px;
  }

  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
  }

  .page-support__faq-qtext {
    font-size: 16px;
  }

  .page-support__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 15px;
  }

  .page-support__commitment-section {
    flex-direction: column;
    padding: 50px 15px;
  }

  .page-support__commitment-content {
    margin-bottom: 25px;
  }

  .page-support__commitment-list li {
    font-size: 16px;
    margin-bottom: 10px;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .page-support__commitment-image {
    width: 100%;
    max-width: 400px; /* Constrain image on very small screens */
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}