/* style/download-installation-tutorial.css */

.page-download-installation-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-download-installation-tutorial__hero {
  background: linear-gradient(135deg, #0A2342 0%, #36506f 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-installation-tutorial__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-download-installation-tutorial__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* General Section Styling */
.page-download-installation-tutorial__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-download-installation-tutorial__section:nth-of-type(even) {
  background-color: #f0f4f7;
}

.page-download-installation-tutorial__section-title {
  font-size: 2.2em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

/* Buttons */
.page-download-installation-tutorial__button {
  display: inline-block;
  background-color: #DC3545; /* Action red */
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-download-installation-tutorial__button--primary {
  background-color: #FFD700; /* Gold for primary CTA */
  color: #0A2342;
}

.page-download-installation-tutorial__button:hover {
  background-color: #c82333; /* Darker red on hover */
  transform: translateY(-2px);
}

.page-download-installation-tutorial__button--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
}

/* Lists */
.page-download-installation-tutorial__list {
  list-style: disc inside;
  margin-left: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-download-installation-tutorial__list li {
  margin-bottom: 10px;
}

.page-download-installation-tutorial__list-item-title {
  color: #0A2342;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.page-download-installation-tutorial__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-download-installation-tutorial__steps-list li {
  margin-bottom: 40px;
  padding-left: 60px;
  position: relative;
}

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

.page-download-installation-tutorial__step-title {
  color: #0A2342;
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Images */
.page-download-installation-tutorial__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

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

/* Benefits Grid */
.page-download-installation-tutorial__grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-download-installation-tutorial__icon-box {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-installation-tutorial__icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-download-installation-tutorial__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* Final CTA */
.page-download-installation-tutorial__cta-final {
  background: #0A2342;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-download-installation-tutorial__cta-final-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-download-installation-tutorial__cta-note {
  margin-top: 20px;
  font-size: 1em;
  color: #ccc;
}

.page-download-installation-tutorial__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-download-installation-tutorial__link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-download-installation-tutorial__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

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

.page-download-installation-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-download-installation-tutorial__faq-item.active .page-download-installation-tutorial__faq-question::after {
  content: '-';
}

.page-download-installation-tutorial__faq-answer {
  color: #555;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
}

.page-download-installation-tutorial__faq-item.active .page-download-installation-tutorial__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-installation-tutorial__hero-title {
    font-size: 2em;
  }
  .page-download-installation-tutorial__hero-subtitle {
    font-size: 1em;
  }
  .page-download-installation-tutorial__section-title {
    font-size: 1.8em;
  }
  .page-download-installation-tutorial__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-installation-tutorial__steps-list li {
    padding-left: 50px;
  }
  .page-download-installation-tutorial__steps-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
  .page-download-installation-tutorial__grid-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-download-installation-tutorial__hero-title {
    font-size: 1.7em;
  }
  .page-download-installation-tutorial__hero-subtitle {
    font-size: 0.9em;
  }
  .page-download-installation-tutorial__section-title {
    font-size: 1.6em;
  }
  .page-download-installation-tutorial__button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}