/* style/download-center-mobile-faq.css */
.page-download-center-mobile-faq {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-download-center-mobile-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.page-download-center-mobile-faq__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gradient]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-mobile-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-download-center-mobile-faq__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-download-center-mobile-faq__brand {
  color: #ffc107;
  font-weight: bold;
}

.page-download-center-mobile-faq__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-download-center-mobile-faq__cta-button:hover {
  background-color: #e0a800; /* Darker shade of auxiliary color */
  transform: translateY(-2px);
}

.page-download-center-mobile-faq__cta-button--secondary {
  background-color: #007bff;
  color: #ffffff;
  margin-left: 15px;
}

.page-download-center-mobile-faq__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-download-center-mobile-faq__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
}

.page-download-center-mobile-faq__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-download-center-mobile-faq__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-download-center-mobile-faq__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffc107;
  margin: 10px auto 0 auto;
}

.page-download-center-mobile-faq__text-block {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-faq__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-download-center-mobile-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-faq__image-caption {
  font-style: italic;
  color: #666666;
  margin-top: 10px;
  font-size: 0.95em;
}

.page-download-center-mobile-faq__accordion {
  margin-top: 30px;
}

.page-download-center-mobile-faq__accordion-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-faq__accordion-header {
  background-color: #007bff;
  color: #ffffff;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-download-center-mobile-faq__accordion-header:hover {
  background-color: #0056b3;
}

.page-download-center-mobile-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-mobile-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-mobile-faq__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-mobile-faq__accordion-content.active {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-download-center-mobile-faq__accordion-content p {
  margin-bottom: 15px;
  color: #555555;
}

.page-download-center-mobile-faq__accordion-content ul,
.page-download-center-mobile-faq__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555555;
}

.page-download-center-mobile-faq__accordion-content li {
  margin-bottom: 8px;
}

.page-download-center-mobile-faq__accordion-content h4 {
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-download-center-mobile-faq__tips-list {
  list-style-type: disc;
  margin: 30px auto;
  padding-left: 40px;
  max-width: 800px;
  color: #444444;
  font-size: 1.1em;
}

.page-download-center-mobile-faq__tips-list li {
  margin-bottom: 15px;
}

.page-download-center-mobile-faq__call-to-action {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-faq__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-center-mobile-faq__hero-title {
    font-size: 2.2em;
  }

  .page-download-center-mobile-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-download-center-mobile-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-mobile-faq__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-download-center-mobile-faq__section-title {
    font-size: 1.8em;
  }

  .page-download-center-mobile-faq__text-block {
    font-size: 1em;
  }

  .page-download-center-mobile-faq__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-download-center-mobile-faq__accordion-content {
    padding: 15px 20px;
  }

  .page-download-center-mobile-faq__tips-list {
    padding-left: 20px;
    font-size: 1em;
  }

  .page-download-center-mobile-faq__cta-text {
    font-size: 1.5em;
  }
}

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

  .page-download-center-mobile-faq__hero-section {
    padding: 60px 0;
  }

  .page-download-center-mobile-faq__cta-button {
    width: 100%;
    margin: 10px 0;
  }

  .page-download-center-mobile-faq__cta-button--secondary {
    margin-left: 0;
  }

  .page-download-center-mobile-faq__section-title {
    font-size: 1.5em;
  }

  .page-download-center-mobile-faq__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-download-center-mobile-faq__accordion-content {
    padding: 12px 15px;
  }

  .page-download-center-mobile-faq__tips-list {
    padding-left: 15px;
  }

  .page-download-center-mobile-faq__call-to-action {
    padding: 30px 15px;
  }

  .page-download-center-mobile-faq__cta-text {
    font-size: 1.2em;
  }
}