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

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

.page-download-center-app-features h1,
.page-download-center-app-features h2 {
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-download-center-app-features h3 {
  color: #003366;
  font-weight: 600;
}

.page-download-center-app-features p {
  margin-bottom: 15px;
}

.page-download-center-app-features ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-download-center-app-features ul li {
  margin-bottom: 8px;
}

.page-download-center-app-features__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-download-center-app-features__button--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color for text for contrast */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-download-center-app-features__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-download-center-app-features__button--secondary {
  background-color: #003366; /* Main color */
  color: #FFCC00; /* Accent color for text for contrast */
  border: 2px solid #FFCC00;
}

.page-download-center-app-features__button--secondary:hover {
  background-color: #002244;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.page-download-center-app-features__button--large {
  padding: 15px 35px;
  font-size: 1.1em;
  min-width: 250px;
}

/* Hero Section */
.page-download-center-app-features__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-download-center-app-features__hero-content h1 {
  color: #FFCC00; /* Accent color for main title */
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-download-center-app-features__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #e0e0e0;
}

.page-download-center-app-features__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-download-center-app-features__hero-image-wrapper {
  margin-top: 40px;
}

.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);
}

/* Features Overview */
.page-download-center-app-features__features-overview {
  padding: 60px 0;
  background-color: #fff;
}

.page-download-center-app-features__features-overview h2 {
  font-size: 2.5em;
  color: #003366;
}

.page-download-center-app-features__features-overview p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #555;
}

.page-download-center-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-download-center-app-features__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-download-center-app-features__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-download-center-app-features__feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #003366;
}

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

/* Detailed Features */
.page-download-center-app-features__detailed-features {
  padding: 80px 0;
  background-color: #eef4f7;
}

.page-download-center-app-features__detailed-features h2 {
  font-size: 2.8em;
  margin-bottom: 60px;
}

.page-download-center-app-features__feature-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.page-download-center-app-features__feature-block:last-of-type {
  margin-bottom: 0;
}

.page-download-center-app-features__feature-block--reverse {
  flex-direction: row-reverse;
}

.page-download-center-app-features__feature-text {
  flex: 1;
}

.page-download-center-app-features__feature-text h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #003366;
}

.page-download-center-app-features__feature-text p {
  font-size: 1.1em;
  color: #444;
}

.page-download-center-app-features__feature-text ul {
  list-style-type: '✅ ';
  padding-left: 20px;
}

.page-download-center-app-features__feature-text ul li {
  margin-bottom: 10px;
  color: #444;
}

.page-download-center-app-features__feature-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* How to Start */
.page-download-center-app-features__how-to-start {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.page-download-center-app-features__how-to-start h2 {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 40px;
}

.page-download-center-app-features__how-to-start p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #555;
}

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

.page-download-center-app-features__step-item {
  background-color: #f4f7f6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.page-download-center-app-features__step-number {
  position: absolute;
  top: -15px;
  left: 15px;
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color for text */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-app-features__step-item h3 {
  margin-top: 20px;
  font-size: 1.5em;
  color: #003366;
}

.page-download-center-app-features__step-item p {
  font-size: 1em;
  color: #666;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
}

.page-download-center-app-features__final-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-download-center-app-features__faq {
  padding: 80px 0;
  background-color: #f0f5f8;
}

.page-download-center-app-features__faq h2 {
  font-size: 2.8em;
  color: #003366;
  margin-bottom: 50px;
}

.page-download-center-app-features__faq-accordion {
  max-width: 900px;
  margin: 0 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.05);
}

.page-download-center-app-features__faq-question {
  width: 100%;
  background-color: #003366; /* Main color */
  color: #FFCC00; /* Accent color for text */
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-download-center-app-features__faq-question:hover {
  background-color: #002244;
}

.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::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-app-features__faq-answer {
  padding: 0 25px;
  background-color: #f9f9f9;
  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: 200px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-download-center-app-features__faq-answer p {
  color: #555;
  margin-bottom: 0;
}

/* Final Call to Action */
.page-download-center-app-features__final-call-to-action {
  background: linear-gradient(to right, #003366, #0055aa); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-app-features__final-call-to-action h2 {
  color: #FFCC00; /* Accent color */
  font-size: 3em;
  margin-bottom: 20px;
}

.page-download-center-app-features__final-call-to-action p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-app-features__hero-section .page-download-center-app-features__container {
    flex-direction: column;
  }

  .page-download-center-app-features__hero-content h1 {
    font-size: 2.8em;
  }

  .page-download-center-app-features__feature-block {
    flex-direction: column;
    text-align: center;
  }

  .page-download-center-app-features__feature-block--reverse {
    flex-direction: column;
  }

  .page-download-center-app-features__feature-image-wrapper {
    min-width: unset;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-features__hero-section,
  .page-download-center-app-features__features-overview,
  .page-download-center-app-features__detailed-features,
  .page-download-center-app-features__how-to-start,
  .page-download-center-app-features__faq,
  .page-download-center-app-features__final-call-to-action {
    padding: 50px 0;
  }

  .page-download-center-app-features__hero-content h1 {
    font-size: 2.2em;
  }

  .page-download-center-app-features__features-overview h2,
  .page-download-center-app-features__detailed-features h2,
  .page-download-center-app-features__how-to-start h2,
  .page-download-center-app-features__faq h2,
  .page-download-center-app-features__final-call-to-action h2 {
    font-size: 2em;
  }

  .page-download-center-app-features__feature-text h3 {
    font-size: 1.6em;
  }

  .page-download-center-app-features__cta-group,
  .page-download-center-app-features__final-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-download-center-app-features__button {
    width: 100%;
    max-width: 300px;
  }

  .page-download-center-app-features__button--large {
    width: 100%;
    max-width: 300px;
  }

  .page-download-center-app-features__feature-grid,
  .page-download-center-app-features__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-download-center-app-features__step-item {
    text-align: center;
    padding-top: 40px;
  }

  .page-download-center-app-features__step-number {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-download-center-app-features__step-item h3,
  .page-download-center-app-features__step-item p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-features__hero-content h1 {
    font-size: 1.8em;
  }

  .page-download-center-app-features__hero-content p {
    font-size: 1em;
  }

  .page-download-center-app-features__features-overview h2,
  .page-download-center-app-features__detailed-features h2,
  .page-download-center-app-features__how-to-start h2,
  .page-download-center-app-features__faq h2,
  .page-download-center-app-features__final-call-to-action h2 {
    font-size: 1.8em;
  }

  .page-download-center-app-features__feature-text h3 {
    font-size: 1.4em;
  }

  .page-download-center-app-features__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-download-center-app-features__faq-answer.active {
    padding: 15px 20px;
  }
}