/* style/download-app-push-notifications.css */

.page-download-app-push-notifications {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-download-app-push-notifications__hero-section {
  background: linear-gradient(135deg, #0D47A1, #1A6CC9);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-download-app-push-notifications__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD600; /* Bright gold for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-download-app-push-notifications__btn {
  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;
  text-align: center;
}

.page-download-app-push-notifications__btn--primary {
  background-color: #FFD600; /* Bright gold */
  color: #0D47A1; /* Deep blue text for contrast */
  border: 2px solid #FFD600;
}

.page-download-app-push-notifications__btn--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
}

.page-download-app-push-notifications__btn--secondary {
  background-color: transparent;
  color: #FFD600; /* Bright gold */
  border: 2px solid #FFD600;
}

.page-download-app-push-notifications__btn--secondary:hover {
  background-color: #FFD600;
  color: #0D47A1;
  transform: translateY(-3px);
}

.page-download-app-push-notifications__section {
  padding: 80px 0;
}

.page-download-app-push-notifications__section--alt-bg {
  background-color: #e9ecef;
}

.page-download-app-push-notifications__section-title {
  font-size: 2.2em;
  color: #0D47A1; /* Deep blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-app-push-notifications__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

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

.page-download-app-push-notifications__feature-item,
.page-download-app-push-notifications__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.page-download-app-push-notifications__feature-item:hover,
.page-download-app-push-notifications__step-item:hover {
  transform: translateY(-5px);
}

.page-download-app-push-notifications__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-download-app-push-notifications__feature-title,
.page-download-app-push-notifications__step-title {
  font-size: 1.4em;
  color: #0D47A1; /* Deep blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-app-push-notifications__feature-text,
.page-download-app-push-notifications__step-text {
  font-size: 1em;
  color: #666;
}

.page-download-app-push-notifications__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD600; /* Bright gold */
  color: #0D47A1; /* Deep blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  border: 3px solid #0D47A1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-download-app-push-notifications__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
  font-size: 0.95em;
}

.page-download-app-push-notifications__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-download-app-push-notifications__faq-list {
  margin-top: 40px;
}

.page-download-app-push-notifications__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-app-push-notifications__faq-question {
  font-size: 1.2em;
  color: #0D47A1; /* Deep blue */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-app-push-notifications__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-download-app-push-notifications__final-cta {
  background-color: #0D47A1; /* Deep blue */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-download-app-push-notifications__final-cta-title {
  font-size: 2.5em;
  color: #FFD600; /* Bright gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-app-push-notifications__final-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-app-push-notifications__main-title {
    font-size: 2.2em;
  }

  .page-download-app-push-notifications__subtitle {
    font-size: 1.1em;
  }

  .page-download-app-push-notifications__section-title,
  .page-download-app-push-notifications__final-cta-title {
    font-size: 1.8em;
  }

  .page-download-app-push-notifications__section-description,
  .page-download-app-push-notifications__final-cta-description {
    font-size: 1em;
  }

  .page-download-app-push-notifications__hero-section,
  .page-download-app-push-notifications__section,
  .page-download-app-push-notifications__final-cta {
    padding: 60px 0;
  }

  .page-download-app-push-notifications__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-download-app-push-notifications__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
  }
}

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

  .page-download-app-push-notifications__subtitle {
    font-size: 0.9em;
  }

  .page-download-app-push-notifications__section-title,
  .page-download-app-push-notifications__final-cta-title {
    font-size: 1.5em;
  }

  .page-download-app-push-notifications__feature-title,
  .page-download-app-push-notifications__step-title {
    font-size: 1.2em;
  }

  .page-download-app-push-notifications__btn {
    width: 90%;
  }
  .page-download-app-push-notifications__features-grid,
  .page-download-app-push-notifications__steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure color contrast for all text elements */
.page-download-app-push-notifications h1, .page-download-app-push-notifications h2, .page-download-app-push-notifications h3 {
  color: #0D47A1; /* Deep blue for titles on light backgrounds */
}

.page-download-app-push-notifications__hero-section .page-download-app-push-notifications__main-title,
.page-download-app-push-notifications__final-cta .page-download-app-push-notifications__final-cta-title {
  color: #FFD600; /* Bright gold on deep blue background */
}

.page-download-app-push-notifications__hero-section .page-download-app-push-notifications__subtitle,
.page-download-app-push-notifications__final-cta .page-download-app-push-notifications__final-cta-description {
  color: #E0E0E0; /* Light gray on deep blue background */
}

.page-download-app-push-notifications p, .page-download-app-push-notifications li {
  color: #333; /* Dark gray for body text on light backgrounds */
}

.page-download-app-push-notifications__section--alt-bg p, .page-download-app-push-notifications__section--alt-bg li {
  color: #333; /* Dark gray on slightly darker light background */
}

.page-download-app-push-notifications__btn--primary {
  color: #0D47A1; /* Deep blue text on bright gold button */
}

.page-download-app-push-notifications__btn--secondary {
  color: #FFD600; /* Bright gold text on transparent/deep blue button */
}

.page-download-app-push-notifications__btn--secondary:hover {
  color: #0D47A1; /* Deep blue text on bright gold hover */
}

.page-download-app-push-notifications__step-number {
  color: #0D47A1; /* Deep blue text on bright gold circle */
}

.page-download-app-push-notifications__note {
  color: #777; /* Medium gray on light background */
}

.page-download-app-push-notifications__faq-item a {
  color: #0D47A1;
}

.page-download-app-push-notifications__step-text a {
  color: #0D47A1; /* Deep blue for links in text */
  font-weight: bold;
  text-decoration: underline;
}

.page-download-app-push-notifications__step-text a:hover {
  color: #FFD600;
}