/* style/index-app-download-guide.css */

/* Base styles for the page content */
.page-index-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark gray for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for the page */
}

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

.page-index-app-download-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-app-download-guide__section:nth-of-type(even) {
  background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-index-app-download-guide__section-title {
  font-size: 2.5em;
  color: #0A1931; /* Primary color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-app-download-guide__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-index-app-download-guide__hero {
  background: linear-gradient(135deg, #0A1931 0%, #3d5a80 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-index-app-download-guide__hero-title {
  font-size: 3.5em;
  color: #FFC107; /* Accent color for hero title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-app-download-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-index-app-download-guide__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 700px;
  opacity: 0.8;
  pointer-events: none;
}

.page-index-app-download-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.page-index-app-download-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-index-app-download-guide__button--primary {
  background-color: #FFC107; /* Accent color */
  color: #0A1931; /* Primary color for text */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-index-app-download-guide__button--primary:hover {
  background-color: #e0a800; /* Darker accent on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-index-app-download-guide__button--secondary {
  background-color: #0A1931; /* Primary color */
  color: #FFC107; /* Accent color for text */
  border: 2px solid #FFC107;
  margin-left: 20px;
}

.page-index-app-download-guide__button--secondary:hover {
  background-color: #1a335c; /* Slightly lighter primary on hover */
  transform: translateY(-2px);
}

/* Why Download Section */
.page-index-app-download-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-download-guide__benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-index-app-download-guide__benefit-title {
  font-size: 1.4em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-index-app-download-guide__benefit-text {
  color: #555555;
}

/* Download Guide Section */
.page-index-app-download-guide__step-by-step {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-index-app-download-guide__step-item {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-app-download-guide__step-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-app-download-guide__step-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  text-align: center;
  max-width: 700px;
}

.page-index-app-download-guide__qr-code-wrapper {
  width: 200px;
  height: 200px;
  margin-bottom: 30px;
  border: 5px solid #FFC107;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-app-download-guide__qr-code {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.page-index-app-download-guide__step-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-app-download-guide__cta-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Features Section */
.page-index-app-download-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-download-guide__feature-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-index-app-download-guide__feature-title {
  font-size: 1.3em;
  color: #0A1931;
  margin-bottom: 10px;
}

.page-index-app-download-guide__feature-text {
  color: #666666;
}

.page-index-app-download-guide__features-image {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Offers Section */
.page-index-app-download-guide__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-download-guide__offer-item {
  background-color: #FFC107;
  color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
  text-align: left;
}

.page-index-app-download-guide__offer-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-app-download-guide__offer-text {
  color: #333333;
}

.page-index-app-download-guide__offers-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-index-app-download-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-app-download-guide__faq-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-app-download-guide__faq-question {
  font-size: 1.2em;
  color: #0A1931;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-index-app-download-guide__faq-answer {
  font-size: 1em;
  color: #666666;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-app-download-guide__faq-question.active + .page-index-app-download-guide__faq-answer {
  display: block;
}

/* Conclusion Section */
.page-index-app-download-guide__section--conclusion {
  background-color: #0A1931;
  color: #ffffff;
  padding: 80px 0;
}

.page-index-app-download-guide__section--conclusion .page-index-app-download-guide__section-title {
  color: #FFC107;
}

.page-index-app-download-guide__section--conclusion .page-index-app-download-guide__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-app-download-guide__hero-title {
    font-size: 2.8em;
  }
  .page-index-app-download-guide__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-app-download-guide__section-title {
    font-size: 2em;
  }
  .page-index-app-download-guide__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-index-app-download-guide__hero {
    padding: 80px 0 50px;
  }
  .page-index-app-download-guide__hero-title {
    font-size: 2.2em;
  }
  .page-index-app-download-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-app-download-guide__hero-image-wrapper {
    position: static;
    width: 80%;
    margin: 40px auto 0;
    opacity: 1;
  }
  .page-index-app-download-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-app-download-guide__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-index-app-download-guide__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-index-app-download-guide__section {
    padding: 40px 0;
  }
  .page-index-app-download-guide__section-title {
    font-size: 1.8em;
  }
  .page-index-app-download-guide__step-item {
    padding: 30px 20px;
  }
  .page-index-app-download-guide__step-image,
  .page-index-app-download-guide__features-image,
  .page-index-app-download-guide__offers-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-index-app-download-guide__hero-title {
    font-size: 1.8em;
  }
  .page-index-app-download-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-index-app-download-guide__button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-index-app-download-guide__button--secondary {
    margin-top: 0;
  }
  .page-index-app-download-guide__container {
    padding: 0 15px;
  }
  .page-index-app-download-guide__section-title {
    font-size: 1.5em;
  }
}