/* style/support.css */
.page-support {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0a0a0a; /* Match body background for seamless blend */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

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

.page-support__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 100%;
}

.page-support__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-tertiary,
.page-support__btn-inline {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-support__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

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

.page-support__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-support__btn-tertiary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-support__btn-tertiary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-support__btn-inline {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
  padding: 0;
  background: none;
  border: none;
  display: inline;
}

.page-support__btn-inline:hover {
  color: #1e87c0;
}

.page-support__section {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Default section background */
  color: #ffffff;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-support__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__introduction p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__introduction a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-support__contact-channels .page-support__section-title {
  color: #ffffff;
}

.page-support__contact-channels p {
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__contact-channels a {
  color: #ffffff;
  text-decoration: underline;
}

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

.page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 350px; /* Ensure cards have similar height */
  box-sizing: border-box;
}

.page-support__channel-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__channel-card p {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__common-issues p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__common-issues a {
  color: #26A9E0;
  text-decoration: underline;
}

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

.page-support__issue-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  color: #ffffff;
}

.page-support__issue-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-support__issue-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-support__issue-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__faq-guide p,
.page-support__faq-guide ul,
.page-support__faq-guide li {
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-support__faq-guide strong {
  color: #ffffff;
}

.page-support__faq-guide a {
  color: #ffffff;
  text-decoration: underline;
}

.page-support__guide-content {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-support__guide-content ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-support__guide-content li {
  margin-bottom: 10px;
}

.page-support__security p {
  font-size: 1.05em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__security a {
  color: #26A9E0;
  text-decoration: underline;
}

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

.page-support__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__feature-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-support__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-support__feature-item p {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-support__feature-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__tips p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__tips a {
  color: #ffffff;
  text-decoration: underline;
}

.page-support__tips-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 30px;
  color: #e0e0e0;
}

.page-support__tips-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-support__tips-list strong {
  color: #ffffff;
}

.page-support__faq {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.page-support__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #ffffff;
}

.page-support__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-support__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-support__cta-final {
  padding: 80px 20px;
  text-align: center;
  background-color: #1a1a1a;
}

.page-support__cta-content {
  max-width: 800px;
}

.page-support__cta-final .page-support__section-title {
  color: #ffffff;
}

.page-support__cta-final p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.5em;
  }

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

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

  .page-support__hero-section,
  .page-support__section {
    padding: 40px 15px;
  }

  .page-support__hero-content {
    padding: 0 15px;
  }

  .page-support__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-support__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support__btn-tertiary,
  .page-support__btn-inline {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-support__channel-card,
  .page-support__issue-item,
  .page-support__feature-item {
    padding: 20px;
  }

  .page-support__channel-icon,
  .page-support__feature-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

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

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

  /* Force responsive image and video styles */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-image-wrapper,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  
  .page-support__video-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }

  .page-support__section-title {
    font-size: 1.6em;
  }

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

  .page-support__faq-qtext {
    font-size: 0.95em;
  }
}