.page-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-support__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-support__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffc107; /* Highlight with auxiliary color */
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
}

.page-support__hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #ffc107;
  color: #000000; /* Dark text for contrast on bright background */
  border: 2px solid #ffc107;
}

.page-support__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-support__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
}

.page-support__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-support__section:nth-of-type(even) {
  background-color: #f1f1f1; /* Light grey for alternating sections */
}

.page-support__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Channels Section */
.page-support__channels .page-support__section-title {
  color: #0056b3;
}

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

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

.page-support__channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-support__channel-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-support__channel-text {
  color: #666;
  margin-bottom: 20px;
}

.page-support__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

/* FAQ Section */
.page-support__faq {
  position: relative;
  overflow: hidden;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-support__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #0056b3;
  margin-bottom: 10px;
  cursor: pointer; /* To imply expand/collapse if JS is added */
}

.page-support__faq-answer {
  color: #444;
  font-size: 1em;
  /* For JS controlled visibility */
}

.page-support__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.page-support__btn--outline:hover {
  background-color: #007bff;
  color: #ffffff;
}

.page-support__faq-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: auto;
  opacity: 0.1;
  transform: rotate(15deg);
  z-index: 0;
}

/* CTA Banner */
.page-support__cta-banner {
  background: linear-gradient(90deg, #007bff, #ffc107);
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-support__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

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

.page-support__btn--special-download {
  background-color: #0056b3;
  color: #ffffff;
  border: 2px solid #0056b3;
}

.page-support__btn--special-download:hover {
  background-color: #003f80;
  border-color: #003f80;
  transform: translateY(-2px);
}

/* App Download Section */
.page-support__app-download {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__app-download .page-support__section-title {
  color: #ffc107;
}

.page-support__app-features {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.page-support__app-features ul {
  list-style: none;
  padding: 0;
}

.page-support__app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-support__app-features li img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

.page-support__app-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Safety Section */
.page-support__safety {
  background-color: #e9ecef;
}

.page-support__safety .page-support__section-title {
  color: #007bff;
}

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

.page-support__safety-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.page-support__safety-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-support__safety-title {
  font-size: 1.6em;
  color: #0056b3;
  margin-bottom: 10px;
}

.page-support__safety-text {
  color: #666;
}

.page-support__safety-image {
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Technical Section */
.page-support__technical .page-support__section-title {
  color: #007bff;
}

.page-support__technical-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

.page-support__technical-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #ffc107;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-support__technical-list li img {
  width: 25px;
  height: 25px;
  margin-right: 15px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.page-support__technical-image {
  max-width: 700px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Promo Section */
.page-support__promo {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-support__promo .page-support__section-title {
  color: #ffc107;
}

.page-support__promo .page-support__section-description {
  color: #e9ecef;
}

/* Commitment Section */
.page-support__commitment .page-support__section-title {
  color: #0056b3;
}

.page-support__commitment-image {
  max-width: 900px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Detail Pages Section */
.page-support__detail-pages {
  background-color: #f0f8ff;
  position: relative;
  overflow: hidden;
}

.page-support__detail-pages .page-support__section-title {
  color: #007bff;
}

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

.page-support__detail-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-support__card-title {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 10px;
}

.page-support__card-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-support__card-description {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__btn--text {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  font-weight: bold;
  text-align: left;
  display: flex;
  align-items: center;
  width: fit-content;
}

.page-support__btn--text:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-support__arrow {
  margin-left: 8px;
  font-size: 1.2em;
  transition: margin-left 0.3s ease;
}

.page-support__btn--text:hover .page-support__arrow {
  margin-left: 12px;
}

.page-support__detail-pages-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__main-title {
    font-size: 2.8em;
  }

  .page-support__hero-description {
    font-size: 1.1em;
  }

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

  .page-support__cta-title {
    font-size: 2.2em;
  }

  .page-support__channel-grid, .page-support__safety-features, .page-support__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 80px 0;
  }

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

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-support__section {
    padding: 40px 0;
  }

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

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

  .page-support__cta-actions {
    flex-direction: column;
  }

  .page-support__faq-image, .page-support__app-image, .page-support__safety-image, .page-support__technical-image, .page-support__commitment-image {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-section {
    padding: 60px 0;
  }

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

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-support__section-description {
    font-size: 0.9em;
  }

  .page-support__channel-grid, .page-support__safety-features, .page-support__detail-grid {
    grid-template-columns: 1fr;
  }

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

  .page-support__app-features li, .page-support__technical-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}