/* style/support.css */

/* Base styles for page-support */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 10px auto 0;
}

.page-support__text-block {
  margin-bottom: 30px;
}

.page-support p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-support a {
  color: #2AD16F;
  text-decoration: none;
}

.page-support a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-support__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-support__main-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  /* No fixed font-size, let responsive handling and weight define */
}

.page-support__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(34, 199, 104, 0.4);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-right: 10px;
  margin-bottom: 10px;
}

.page-support__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Introduction Section */
.page-support__introduction-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__introduction-section .page-support__text-block {
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-support__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Quick Links Section */
.page-support__quick-links-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-support__card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-support__card-icon {
  width: 100%; /* Ensure large images for cards */
  height: 200px; /* Min height for card images */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__card-title a {
  color: #F2FFF6;
}

.page-support__card-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-support__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__card-button {
  display: inline-block;
  background: #22C768; /* Auxiliary color */
  color: #08160F; /* Dark background text for contrast */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s ease;
}

.page-support__card-button:hover {
  background: #57E38D; /* Glow */
}

/* Detailed Guides Section */
.page-support__guides-section {
  padding: 60px 0;
}

.page-support__guide-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-support__guide-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-support__guide-item p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-support__guide-item strong {
  color: #F2FFF6;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-support__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-support__faq-answer {
  padding: 15px 25px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__contact-description {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-support__contact-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__contact-item p {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__content-image--large {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Security Section */
.page-support__security-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
  text-align: center;
}

.page-support__security-section .page-support__text-block {
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-support__security-section .page-support__text-block p {
  color: #A7D9B8; /* Text Secondary */
}

/* Final CTA Section */
.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-support__dark-section .page-support__section-title,
.page-support__dark-section .page-support__cta-description {
  color: #F2FFF6;
}

.page-support__dark-section .page-support__cta-description {
  color: #A7D9B8;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-support__card-title {
    font-size: 1.2em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-support__contact-title {
    font-size: 1.4em;
  }
  
  /* Mobile responsive for images, videos, buttons and containers */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support video,
  .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-section,
  .page-support__introduction-section,
  .page-support__quick-links-section,
  .page-support__guides-section,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__security-section,
  .page-support__cta-section,
  .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;
  }

  .page-support__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Buttons mobile responsive */
  .page-support__cta-button,
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .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;
    margin-bottom: 10px; /* Add some space between stacked buttons */
  }

  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px; /* Space between stacked buttons */
  }

  .page-support__cards-grid,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .page-support__hero-content {
    padding: 10px;
  }
  .page-support__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-support__card-title {
    font-size: 1.1em;
  }
  .page-support__faq-question {
    font-size: 0.95em;
  }
  .page-support__faq-answer {
    font-size: 0.9em;
  }
}