/* style/app-download-installation-tutorial.css */
.page-app-download-installation-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #0A2342; /* Dark blue background */
}

.page-app-download-installation-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-app-download-installation-tutorial__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-installation-tutorial__title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-app-download-installation-tutorial__subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-installation-tutorial__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-app-download-installation-tutorial__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-app-download-installation-tutorial__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-app-download-installation-tutorial__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-app-download-installation-tutorial__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-app-download-installation-tutorial__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-app-download-installation-tutorial__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-app-download-installation-tutorial__hero-image {
  max-width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-app-download-installation-tutorial__section {
  padding: 60px 0;
  background-color: #0A2342;
}

.page-app-download-installation-tutorial__section:nth-of-type(even) {
  background-color: #1A3F6C; /* Slightly lighter dark blue for contrast */
}

.page-app-download-installation-tutorial__heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-app-download-installation-tutorial__sub-heading {
  font-size: 2em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 25px;
  text-align: left;
}

.page-app-download-installation-tutorial__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-app-download-installation-tutorial__note {
  font-style: italic;
  color: #FFD700;
  margin-top: 30px;
  text-align: center;
}

.page-app-download-installation-tutorial__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-app-download-installation-tutorial__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-installation-tutorial__feature-item {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-app-download-installation-tutorial__feature-item:hover {
  transform: translateY(-5px);
}

.page-app-download-installation-tutorial__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-app-download-installation-tutorial__feature-text {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-app-download-installation-tutorial__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #FFD700;
}

.page-app-download-installation-tutorial__tab-btn {
  background-color: transparent;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #E0E0E0;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.page-app-download-installation-tutorial__tab-btn:hover {
  color: #FFD700;
}

.page-app-download-installation-tutorial__tab-btn.active {
  background-color: #FFD700;
  color: #0A2342;
  border-bottom: 2px solid #FFD700;
}

.page-app-download-installation-tutorial__tab-content {
  display: none;
  background-color: #1A3F6C;
  padding: 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-tutorial__tab-content.active {
  display: block;
}

.page-app-download-installation-tutorial__steps {
  list-style: none;
  padding: 0;
}

.page-app-download-installation-tutorial__step-item {
  margin-bottom: 40px;
  padding-left: 60px;
  position: relative;
}

.page-app-download-installation-tutorial__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2342;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-app-download-installation-tutorial__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-app-download-installation-tutorial__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-tutorial__faq {
  background-color: #0A2342;
}

.page-app-download-installation-tutorial__faq-item {
  background-color: #1A3F6C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-tutorial__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-app-download-installation-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-app-download-installation-tutorial__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-app-download-installation-tutorial__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 15px;
}

.page-app-download-installation-tutorial__cta-bottom {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #1A3F6C, #0A2342);
}

.page-app-download-installation-tutorial__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-app-download-installation-tutorial__title {
    font-size: 2.5em;
  }

  .page-app-download-installation-tutorial__subtitle {
    font-size: 1.2em;
  }

  .page-app-download-installation-tutorial__hero-actions {
    flex-direction: column;
  }

  .page-app-download-installation-tutorial__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-app-download-installation-tutorial__hero-image {
    max-width: 90%;
  }

  .page-app-download-installation-tutorial__heading {
    font-size: 2em;
  }

  .page-app-download-installation-tutorial__sub-heading {
    font-size: 1.6em;
  }

  .page-app-download-installation-tutorial__text {
    font-size: 1em;
  }

  .page-app-download-installation-tutorial__tab-btn {
    font-size: 1em;
    padding: 10px 15px;
  }

  .page-app-download-installation-tutorial__step-item {
    padding-left: 50px;
  }

  .page-app-download-installation-tutorial__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }

  .page-app-download-installation-tutorial__step-title {
    font-size: 1.2em;
  }

  .page-app-download-installation-tutorial__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-app-download-installation-tutorial__title {
    font-size: 2em;
  }

  .page-app-download-installation-tutorial__subtitle {
    font-size: 1em;
  }

  .page-app-download-installation-tutorial__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-app-download-installation-tutorial__heading {
    font-size: 1.8em;
  }

  .page-app-download-installation-tutorial__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}