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

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

.page-download-center-app-features__hero-section {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-download-center-app-features__hero-section .page-download-center-app-features__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-download-center-app-features__hero-section .page-download-center-app-features__container {
    flex-direction: row;
    text-align: left;
  }
  .page-download-center-app-features__hero-content {
    flex: 1;
    padding-right: 30px;
  }
  .page-download-center-app-features__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.page-download-center-app-features__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-download-center-app-features__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-download-center-app-features__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  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: none;
  cursor: pointer;
}

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

.page-download-center-app-features__cta-button--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-download-center-app-features__cta-button--secondary:hover {
  background-color: #1a3a7a;
  border-color: #e6c200;
}

.page-download-center-app-features__cta-button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 30px;
  margin-top: 10px;
}

.page-download-center-app-features__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 60px;
  margin-top: 30px;
}

.page-download-center-app-features__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-download-center-app-features__section-subtitle {
  font-size: 1.05em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-download-center-app-features__why-choose-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-download-center-app-features__feature-card {
  background-color: #f0f2f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-app-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-download-center-app-features__feature-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-download-center-app-features__feature-description {
  font-size: 0.95em;
  color: #666;
}

.page-download-center-app-features__key-features-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-download-center-app-features__feature-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .page-download-center-app-features__feature-detail-item {
    flex-direction: row;
    text-align: left;
  }
  .page-download-center-app-features__feature-detail-item--reverse {
    flex-direction: row-reverse;
  }
  .page-download-center-app-features__feature-detail-content {
    flex: 1;
    padding-right: 40px;
  }
  .page-download-center-app-features__feature-detail-item--reverse .page-download-center-app-features__feature-detail-content {
    padding-left: 40px;
    padding-right: 0;
  }
  .page-download-center-app-features__feature-detail-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.page-download-center-app-features__feature-detail-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-download-center-app-features__feature-detail-description {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
}

.page-download-center-app-features__feature-detail-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-app-features__how-to-download-section {
  padding: 60px 0;
  background-color: #eef1f5;
}

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

.page-download-center-app-features__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #0A2463;
}

.page-download-center-app-features__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-download-center-app-features__step-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-download-center-app-features__download-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
    .page-download-center-app-features__download-buttons {
        flex-direction: row;
    }
}

.page-download-center-app-features__qr-code {
  max-width: 180px;
  height: auto;
  margin-top: 20px;
  border: 5px solid #0A2463;
  border-radius: 5px;
}

.page-download-center-app-features__exclusive-offers-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-download-center-app-features__offer-card {
  background-color: #f0f2f5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-download-center-app-features__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-download-center-app-features__offer-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-download-center-app-features__offer-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-download-center-app-features__full-offers-cta {
    text-align: center;
    margin-top: 50px;
}

.page-download-center-app-features__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-download-center-app-features__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-app-features__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-download-center-app-features__faq-question {
  width: 100%;
  background-color: #0A2463;
  color: #fff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-download-center-app-features__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-app-features__faq-question.active {
  background-color: #1a3a7a;
}

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

.page-download-center-app-features__faq-answer {
  padding: 0 25px;
  background-color: #fcfcfc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-app-features__faq-answer.active {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-download-center-app-features__faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1em;
}

.page-download-center-app-features__cta-final-section {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-app-features__cta-final-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-download-center-app-features__cta-final-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-center-app-features__hero-title {
    font-size: 2.2em;
  }
  .page-download-center-app-features__section-title {
    font-size: 1.8em;
  }
  .page-download-center-app-features__feature-title {
    font-size: 1.2em;
  }
  .page-download-center-app-features__feature-detail-title {
    font-size: 1.5em;
  }
  .page-download-center-app-features__cta-button--large {
    font-size: 1.05em;
    padding: 15px 30px;
  }
  .page-download-center-app-features__cta-final-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-features__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-app-features__section-title {
    font-size: 1.6em;
  }
  .page-download-center-app-features__cta-button, .page-download-center-app-features__cta-button--secondary {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page-download-center-app-features__cta-button--secondary {
    margin-top: 0;
  }
  .page-download-center-app-features__download-buttons {
      flex-direction: column;
  }
}