.page-support {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body padding-top handled by shared.css */
  background-color: #0A4B2C; /* Deep Green background for hero */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

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

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: bold;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s 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__cta-button--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-support__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-support__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__text {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__overview-section .page-support__text {
  text-align: justify;
}

.page-support__channels-section {
  background-color: #11271B; /* Card BG */
}

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

.page-support__channel-card {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-support__channel-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-support__channel-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__issue-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-support__issue-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  border-bottom: 2px solid #2E7A4E; /* Border */
  padding-bottom: 10px;
}

.page-support__issue-list {
  list-style: none;
  padding: 0;
}

.page-support__issue-list li {
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  position: relative;
  padding-left: 20px;
}

.page-support__issue-list li::before {
  content: '•';
  color: #2AD16F; /* Button top color for bullet */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-support__issue-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-support__process-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__process-list {
  list-style: decimal;
  padding-left: 25px;
  max-width: 1000px;
  margin: 0 auto;
  color: #F2FFF6; /* Text Main */
}

.page-support__process-list li {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.8;
}

.page-support__process-list strong {
  color: #F2C14E; /* Gold */
}

.page-support__tips-list {
  list-style: none;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.page-support__tips-list li {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-support__tips-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-support__security-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-support__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  user-select: none;
  list-style: none;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Button top color */
  margin-left: 15px;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

.page-support__button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-support__issues-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-support__hero-image-wrapper {
    max-height: 300px;
  }
  .page-support__main-title {
    font-size: 2em;
  }
  .page-support__description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__section {
    padding: 40px 0;
  }
  .page-support__channels-grid,
  .page-support__issues-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__channel-card,
  .page-support__issue-card {
    padding: 20px;
  }
  .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__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
  .page-support__button-wrapper {
    padding: 0 15px;
  }
  .page-support__container {
    padding: 0 15px;
  }

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

  .page-support__hero-image-wrapper,
  .page-support__channel-card,
  .page-support__issue-card,
  .page-support__process-section,
  .page-support__security-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__process-image, .page-support__security-image {
    padding: 0;
  }
  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9em;
  }
  .page-support__faq-list {
    margin-top: 20px;
  }
}