/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-support__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-support__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-support__content-area,
.page-support__dark-section,
.page-support__conclusion-section,
.page-support__contact-section {
  padding: 60px 20px;
}

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

.page-support__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-support__section-title {
  font-size: 2.2em;
  color: inherit; /* Inherits from parent section */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support__paragraph {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: inherit;
}

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

.page-support__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-support__card p {
  font-size: 1em;
  margin-bottom: 15px;
  text-align: left;
}

.page-support__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  text-align: left;
}

.page-support__list li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-support__video-section {
  padding: 80px 20px;
  text-align: center;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-support__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-support__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #26A9E0;
}

.page-support__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #555555;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-support__image--full-width {
    width: 100%;
}

.page-support__card--alt {
  background-color: #f0f8ff; /* Lighter blue background */
  color: #333333;
  border: 1px solid #cceeff;
}

.page-support__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 10px 20px;
  border: 2px solid #26A9E0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

.page-support__info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-support__info-card {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.page-support__info-card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__info-card p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #1e87b7;
  text-decoration: underline;
}

.page-support__contact-section {
  background-color: #000000; /* Use black for contact section background as per custom color */
  color: #ffffff;
  text-align: center;
}

.page-support__contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-support__contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-support__contact-link:hover {
  color: #26A9E0;
  transform: translateY(-5px);
}

.page-support__contact-icon {
  font-size: 3em;
  margin-bottom: 10px;
}

.page-support__contact-text {
  font-size: 1.1em;
  font-weight: bold;
}

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

  .page-support__hero-section {
    height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-support__intro-text {
    font-size: 1em;
  }

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

  .page-support__paragraph {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-support__card-grid,
  .page-support__info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__card,
  .page-support__info-card {
    padding: 20px;
  }

  .page-support__card-title {
    font-size: 1.3em;
  }

  .page-support__list {
    margin-left: 15px;
  }

  .page-support__video-wrapper {
    padding-bottom: 75%; /* 4:3 Aspect Ratio for mobile or keep 16:9 */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .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;
  }

  .page-support__faq-question {
    padding: 15px 20px;
  }

  .page-support__faq-question h3 {
    font-size: 1.1em;
  }

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

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 10px 20px;
  }

  .page-support__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__contact-methods {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Ensure all content sections have proper mobile padding */
  .page-support__content-area,
  .page-support__dark-section,
  .page-support__conclusion-section,
  .page-support__contact-section {
    padding: 40px 15px;
  }

  /* Content area image size lower bound enforcement */
  .page-support img {
    min-width: 200px;
    min-height: 200px;
  }
}