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

.page-faq-app-usage .highlight {
  color: #007BFF;
  font-weight: bold;
}

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

.page-faq-app-usage__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-faq-app-usage__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,light_gradient]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-faq-app-usage__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-faq-app-usage__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFD700; /* Gold for highlight */
}

.page-faq-app-usage__hero-title .highlight {
  color: #fff;
}

.page-faq-app-usage__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-faq-app-usage__hero-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.8;
  z-index: 0;
  transform: rotate(10deg);
  display: none; /* Hidden by default, only for larger screens if needed */
}

.page-faq-app-usage__hero-image img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .page-faq-app-usage__hero-image {
    display: block;
  }
  .page-faq-app-usage__hero {
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
    padding: 100px 0;
  }
  .page-faq-app-usage__hero-content {
    max-width: 600px;
    padding-left: 50px;
  }
  .page-faq-app-usage__hero-title {
    font-size: 4.5em;
  }
  .page-faq-app-usage__hero-subtitle {
    font-size: 1.5em;
  }
}

.page-faq-app-usage__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-faq-app-usage__section:nth-of-type(even) {
  background-color: #f0f4f8;
}

.page-faq-app-usage__section-title {
  font-size: 2.5em;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-faq-app-usage__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-faq-app-usage__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-faq-app-usage__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0056b3;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-faq-app-usage__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq-app-usage__cta-button--secondary {
  background-color: transparent;
  color: #007BFF;
  border-color: #007BFF;
  margin-left: 15px;
}

.page-faq-app-usage__cta-button--secondary:hover {
  background-color: #007BFF;
  color: #fff;
}

.page-faq-app-usage__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 25px;
  margin-top: 20px;
}

.page-faq-app-usage__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-faq-app-usage__accordion {
  margin-top: 30px;
}

.page-faq-app-usage__accordion-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq-app-usage__accordion-header {
  width: 100%;
  background-color: #007BFF;
  color: #fff;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faq-app-usage__accordion-header:hover {
  background-color: #0056b3;
}

.page-faq-app-usage__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq-app-usage__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq-app-usage__accordion-content {
  padding: 20px 25px;
  background-color: #fdfdfd;
  border-top: 1px solid #eee;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq-app-usage__accordion-content.open {
  max-height: 1000px; /* Adjust as needed */
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-faq-app-usage__accordion-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-faq-app-usage__accordion-content ul,
.page-faq-app-usage__accordion-content ol {
  margin-left: 20px;
  margin-bottom: 15px;
  color: #444;
}

.page-faq-app-usage__accordion-content li {
  margin-bottom: 8px;
}

.page-faq-app-usage__link-inline {
  color: #007BFF;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-faq-app-usage__link-inline:hover {
  color: #0056b3;
}

.page-faq-app-usage__image-wrapper {
  text-align: center;
  margin: 25px 0;
}

.page-faq-app-usage__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-faq-app-usage__image-caption {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-faq-app-usage__hero-title {
    font-size: 2.5em;
  }
  .page-faq-app-usage__hero-subtitle {
    font-size: 1.1em;
  }
  .page-faq-app-usage__section-title {
    font-size: 2em;
  }
  .page-faq-app-usage__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq-app-usage__accordion-content {
    padding: 15px 20px;
  }
  .page-faq-app-usage__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-faq-app-usage__cta-button {
    width: 90%;
    margin-bottom: 15px;
  }
  .page-faq-app-usage__cta-button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-faq-app-usage__hero-title {
    font-size: 2em;
  }
  .page-faq-app-usage__section-title {
    font-size: 1.8em;
  }
  .page-faq-app-usage__accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq-app-usage__accordion-content {
    padding: 12px 15px;
  }
}