.page-support {
  color: var(--text-main);
  background: var(--bg);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  position: relative; /* Ensure content is above image visually if needed, but not overlaying text on image directly */
  z-index: 1;
}

.page-support__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-support__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support__section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.page-support__contact-channels-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__policies-section,
.page-support__commitment-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-support__channel-card,
.page-support__guide-card,
.page-support__policy-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.page-support__channel-card:hover,
.page-support__guide-card:hover,
.page-support__policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-support__channel-icon,
.page-support__guide-image,
.page-support__policy-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-support__channel-title,
.page-support__guide-title,
.page-support__policy-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-support__channel-text,
.page-support__guide-text,
.page-support__policy-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__channel-button,
.page-support__guide-button,
.page-support__policy-link {
  display: inline-block;
  background: var(--deep-green);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__channel-button:hover,
.page-support__guide-button:hover,
.page-support__policy-link:hover {
  background: #11A84E;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

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

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

.page-support__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  list-style: none; /* For details/summary */
}

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

.page-support__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--glow);
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.page-support__answer-link {
  color: var(--glow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__answer-link:hover {
  color: #2AD16F;
}

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

.page-support__commitment-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.page-support__commitment-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--glow);
  margin-bottom: 15px;
}

.page-support__commitment-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.page-support__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: var(--deep-green);
  border-radius: 12px;
}

.page-support__cta-bottom p {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 500;
}

.page-support__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-support__faq-grid {
    grid-template-columns: 1fr 2fr; /* Image on left, FAQ list on right */
  }
  .page-support__contact-channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__commitment-section {
    padding: 60px 40px;
  }
  .page-support__hero-content {
    padding: 60px 40px;
    margin-top: -150px; /* Adjust overlap for larger screens */
  }
  .page-support__channel-icon,
  .page-support__guide-image,
  .page-support__policy-icon {
    height: 250px; /* Slightly larger height for desktop cards */
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-bottom: 40px;
  }
  .page-support__hero-content {
    padding: 30px 15px;
    margin-top: -50px; /* Less overlap on mobile */
  }
  .page-support__hero-title {
    font-size: 2rem;
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__cta-button {
    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: 1.8rem;
    padding-top: 40px;
  }
  .page-support__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-support__contact-channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__commitment-section {
    padding: 30px 15px;
  }

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

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

  .page-support__channel-icon,
  .page-support__guide-image,
  .page-support__policy-icon {
    height: 180px; /* Smaller height for mobile cards */
  }

  .page-support__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-support__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-support__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px 20px;
  }

  .page-support__commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-support__cta-bottom {
    padding: 30px 15px;
  }
  .page-support__cta-bottom p {
    font-size: 1rem;
  }
  .page-support__cta-button--large {
    padding: 15px 25px;
    font-size: 1rem;
  }

  /* Force responsive images and containers */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__hero-image-wrapper,
  .page-support__channels-grid,
  .page-support__channel-card,
  .page-support__guides-grid,
  .page-support__guide-card,
  .page-support__policies-grid,
  .page-support__policy-item,
  .page-support__faq-grid,
  .page-support__faq-list,
  .page-support__commitment-grid,
  .page-support__commitment-item,
  .page-support__cta-bottom,
  .page-support__contact-channels-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__commitment-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-support__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  /* Specific button container for flex-wrap */
  .page-support__button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between stacked buttons */
  }
}

/* Color Contrast Adjustments */
.page-support {
  color: #F2FFF6; /* Text Main */
}

.page-support__section-description,
.page-support__hero-description,
.page-support__channel-text,
.page-support__guide-text,
.page-support__policy-text,
.page-support__commitment-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-support__card,
.page-support__channel-card,
.page-support__guide-card,
.page-support__policy-item,
.page-support__faq-item,
.page-support__commitment-item {
  background-color: #11271B; /* Card BG */
  border-color: #2E7A4E; /* Border */
}

.page-support__cta-bottom {
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-toggle,
.page-support__commitment-title,
.page-support__answer-link {
  color: #57E38D; /* Glow */
}

.page-support__channel-button,
.page-support__guide-button,
.page-support__policy-link {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-support__channel-button:hover,
.page-support__guide-button:hover,
.page-support__policy-link:hover {
  background: #11A84E; /* Main Color */
}