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

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

.page-download-center-mobile-browser__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-download-center-mobile-browser__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Ensure high contrast */
}

.page-download-center-mobile-browser__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Slightly lighter for contrast */
}

.page-download-center-mobile-browser__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-download-center-mobile-browser__btn--primary {
  background-color: #fff;
  color: #007bff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-browser__btn--primary:hover {
  background-color: #f0f0f0;
  color: #0056b3;
}

.page-download-center-mobile-browser__section {
  padding: 60px 0;
}

.page-download-center-mobile-browser__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-download-center-mobile-browser__heading {
  font-size: 2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-download-center-mobile-browser__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #28a745;
  border-radius: 2px;
}

.page-download-center-mobile-browser__section--call-to-action .page-download-center-mobile-browser__heading {
  color: #fff; /* Ensure contrast on dark background */
}

.page-download-center-mobile-browser__section--call-to-action .page-download-center-mobile-browser__heading::after {
  background-color: #fff;
}

.page-download-center-mobile-browser__text--center {
  text-align: center;
}

.page-download-center-mobile-browser__text--white {
  color: #f8f9fa;
}

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

.page-download-center-mobile-browser__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-download-center-mobile-browser__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-download-center-mobile-browser__feature-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-download-center-mobile-browser__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  padding-top: 70px;
}

.page-download-center-mobile-browser__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #28a745;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-mobile-browser__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-download-center-mobile-browser__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-browser__link--inline {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-mobile-browser__link--inline:hover {
  text-decoration: underline;
}

.page-download-center-mobile-browser__cta-block {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.page-download-center-mobile-browser__cta-block p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555;
}

.page-download-center-mobile-browser__btn--secondary {
  background-color: #28a745;
  color: #fff;
  margin: 0 10px;
}

.page-download-center-mobile-browser__btn--secondary:hover {
  background-color: #218838;
}

.page-download-center-mobile-browser__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  margin: 0 10px;
}

.page-download-center-mobile-browser__btn--outline:hover {
  background-color: #007bff;
  color: #fff;
}

.page-download-center-mobile-browser__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-download-center-mobile-browser__list li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-browser__list-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-download-center-mobile-browser__image--full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-browser__accordion {
  margin-top: 30px;
}

.page-download-center-mobile-browser__accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}

.page-download-center-mobile-browser__accordion-header {
  background-color: #f1f1f1;
  color: #333;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-download-center-mobile-browser__accordion-header:hover {
  background-color: #e0e0e0;
}

.page-download-center-mobile-browser__accordion-header::after {
  content: '+';
  float: right;
  font-weight: bold;
}

.page-download-center-mobile-browser__accordion-header.active::after {
  content: '-';
}

.page-download-center-mobile-browser__accordion-content {
  padding: 0 20px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-top: 1px solid #eee;
  border-radius: 0 0 5px 5px;
}

.page-download-center-mobile-browser__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #666;
}

.page-download-center-mobile-browser__image--centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-browser__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-download-center-mobile-browser__benefits-list li {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-browser__benefits-list li strong {
  color: #0056b3;
}

.page-download-center-mobile-browser__image--right-aligned {
  float: right;
  margin: 20px 0 20px 40px;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .page-download-center-mobile-browser__main-title {
    font-size: 2em;
  }

  .page-download-center-mobile-browser__subtitle {
    font-size: 1em;
  }

  .page-download-center-mobile-browser__heading {
    font-size: 1.8em;
  }

  .page-download-center-mobile-browser__features-grid,
  .page-download-center-mobile-browser__steps-grid,
  .page-download-center-mobile-browser__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-download-center-mobile-browser__btn--secondary,
  .page-download-center-mobile-browser__btn--outline {
    margin: 10px 0;
    display: block;
  }

  .page-download-center-mobile-browser__image--right-aligned {
    float: none;
    margin: 20px auto;
    max-width: 80%;
  }
}

.page-download-center-mobile-browser__bg--gradient {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
}

.page-download-center-mobile-browser__heading--white {
  color: #fff;
}

.page-download-center-mobile-browser__btn--light {
  background-color: #fff;
  color: #007bff;
}

.page-download-center-mobile-browser__btn--light:hover {
  background-color: #f0f0f0;
  color: #0056b3;
}