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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Rely on body for header offset, use small top padding */
  padding-bottom: 40px;
  background-color: #F4F7FB;
  gap: 20px;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers area */
}

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

.page-support__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(47, 107, 255, 0.4);
}

.page-support__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-support__btn-secondary:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 16px rgba(47, 107, 255, 0.2);
}

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-support__section-intro {
  font-size: 1.05em;
  color: #1F2D3D;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

.page-support__channels-section,
.page-support__guides-section,
.page-support__faq-section,
.page-support__commitment-section,
.page-support__contact-cta-section {
  padding: 60px 20px;
}

.page-support__light-bg {
  background-color: #F4F7FB;
}

.page-support__dark-bg {
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-support__dark-bg .page-support__section-title,
.page-support__dark-bg .page-support__section-intro {
  color: #ffffff;
}

.page-support__channels-grid,
.page-support__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__channel-card,
.page-support__guide-card {
  background-color: #FFFFFF; /* Card BG */
  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;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block; /* Ensure it respects width/height */
}

.page-support__channel-title,
.page-support__guide-title {
  font-size: 1.4em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__channel-description,
.page-support__guide-description {
  font-size: 0.95em;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

.page-support__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-support__guide-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
  color: #1F2D3D; /* Ensure text color is readable on card background */
}

.page-support__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.7;
}

.page-support__commitment-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__commitment-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__commitment-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-support__commitment-text {
  flex: 1;
  min-width: 300px;
  max-width: 45%;
  color: #1F2D3D;
}

.page-support__commitment-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-support__contact-cta-section {
  text-align: center;
}

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

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-content {
    max-width: 700px;
  }

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

  .page-support__commitment-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-support__hero-image {
    object-fit: contain !important; /* Ensure main image is contained */
  }

  .page-support__main-title {
    font-size: 2em;
  }

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

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

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-support__channels-section,
  .page-support__guides-section,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__contact-cta-section {
    padding: 40px 15px;
  }

  .page-support__channels-grid,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-support__guide-image {
    height: 200px;
  }

  .page-support__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  .page-support__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95em;
  }

  .page-support__commitment-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-support__commitment-image {
    min-width: unset;
    max-width: 100%;
  }

  .page-support__commitment-text {
    min-width: unset;
    max-width: 100%;
  }

  /* General image responsive styles for mobile */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__hero-image-wrapper,
  .page-support__channels-grid,
  .page-support__guides-grid,
  .page-support__faq-list,
  .page-support__commitment-content,
  .page-support__contact-cta-section,
  .page-support__channel-card,
  .page-support__guide-card,
  .page-support__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}