/* style/app-download-ios.css */

/* Base styles for the page content */
.page-app-download-ios {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for readability */
}

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

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

.page-app-download-ios__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main brand color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-ios__section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-app-download-ios__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-app-download-ios__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}

.page-app-download-ios__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2ff;
}

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

.page-app-download-ios__btn--primary {
  background-color: #ffc107; /* Auxiliary brand color */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-app-download-ios__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
}

.page-app-download-ios__btn--secondary {
  background-color: transparent;
  color: #007bff; /* Main brand color */
  border: 2px solid #007bff;
  margin-left: 20px;
}

.page-app-download-ios__btn--secondary:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
}

/* Why Choose Section */
.page-app-download-ios__why-choose {
  background-color: #fff;
}

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

.page-app-download-ios__feature-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-app-download-ios__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3)); /* Shadow for icons */
}

.page-app-download-ios__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

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

/* Download Steps Section */
.page-app-download-ios__download-steps {
  background-color: #e9f7ff; /* Lighter blue background */
}

.page-app-download-ios__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.page-app-download-ios__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-app-download-ios__step-number {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-app-download-ios__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-app-download-ios__step-item p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 20px;
}

.page-app-download-ios__step-item a {
  color: #007bff;
  text-decoration: underline;
}

.page-app-download-ios__step-item a:hover {
  color: #0056b3;
}

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

/* App Features Section */
.page-app-download-ios__app-features {
  background-color: #fff;
}

.page-app-download-ios__feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 50px;
}

.page-app-download-ios__feature-list li {
  background-color: #f0f8ff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios__list-icon {
  font-size: 1.5em;
  color: #ffc107; /* Auxiliary color for emphasis */
  flex-shrink: 0;
}

.page-app-download-ios__feature-list li strong {
  color: #007bff;
}

.page-app-download-ios__list-image {
  max-width: 300px; /* Example size for images within lists */
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
  display: block;
}

/* Benefits Section */
.page-app-download-ios__benefits {
  background-color: #f8f9fa;
}

.page-app-download-ios__benefit-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 50px;
}

.page-app-download-ios__benefit-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #ffc107; /* Auxiliary color accent */
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios__benefit-list li strong {
  color: #007bff;
}

/* Troubleshooting & FAQ Sections */
.page-app-download-ios__troubleshooting, .page-app-download-ios__faq {
  background-color: #e9f7ff;
}

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

.page-app-download-ios__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

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

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

.page-app-download-ios__accordion-header.active {
  background-color: #0056b3;
}

.page-app-download-ios__accordion-header.active::after {
  transform: rotate(45deg);
}

.page-app-download-ios__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-app-download-ios__accordion-content p {
  padding: 15px 0;
  color: #555;
  font-size: 1.0em;
}

/* CTA Register Section */
.page-app-download-ios__cta-register {
  background: linear-gradient(90deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
}

.page-app-download-ios__cta-content {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #333;
}

.page-app-download-ios__cta-content .page-app-download-ios__section-title {
  color: #007bff;
}

.page-app-download-ios__cta-content .page-app-download-ios__section-subtitle {
  color: #555;
}

.page-app-download-ios__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Conclusion Section */
.page-app-download-ios__conclusion {
  background-color: #f0f8ff;
  padding-bottom: 80px;
}

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

  .page-app-download-ios__section-title {
    font-size: 2em;
  }

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

  .page-app-download-ios__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-app-download-ios__btn--secondary {
    margin-left: 0;
  }

  .page-app-download-ios__features-grid {
    grid-template-columns: 1fr;
  }

  .page-app-download-ios__step-item {
    padding: 20px;
  }

  .page-app-download-ios__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-app-download-ios__step-title {
    font-size: 1.5em;
  }

  .page-app-download-ios__list-image {
    max-width: 100%;
  }
}

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

  .page-app-download-ios__hero-description {
    font-size: 1em;
  }

  .page-app-download-ios__section {
    padding: 40px 0;
  }

  .page-app-download-ios__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-app-download-ios__accordion-content p {
    font-size: 0.9em;
  }
}