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

.page-resources-cwin-mobile-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-cwin-mobile-app__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-cwin-mobile-app__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric_pattern,blue_gold_gradient]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-cwin-mobile-app__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107;
  position: relative;
  z-index: 1;
}

.page-resources-cwin-mobile-app__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources-cwin-mobile-app__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-resources-cwin-mobile-app__btn--primary {
  background-color: #ffc107;
  color: #000000;
  border: none;
}

.page-resources-cwin-mobile-app__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-cwin-mobile-app__btn--secondary {
  background-color: #0056b3;
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-resources-cwin-mobile-app__btn--secondary:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

.page-resources-cwin-mobile-app__btn--large {
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-resources-cwin-mobile-app__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-resources-cwin-mobile-app__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-cwin-mobile-app__content-section {
  padding: 60px 0;
}

.page-resources-cwin-mobile-app__article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-cwin-mobile-app__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-resources-cwin-mobile-app__sub-heading {
  font-size: 1.5em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-cwin-mobile-app__article-content p {
  font-size: 1.1em;
  margin-bottom: 1em;
  line-height: 1.7;
  color: #444;
}

.page-resources-cwin-mobile-app__list,
.page-resources-cwin-mobile-app__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-resources-cwin-mobile-app__ordered-list {
  list-style-type: decimal;
}

.page-resources-cwin-mobile-app__list li,
.page-resources-cwin-mobile-app__ordered-list li {
  margin-bottom: 8px;
}

.page-resources-cwin-mobile-app__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-cwin-mobile-app__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-cwin-mobile-app__call-to-action {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
  color: #007bff;
}

.page-resources-cwin-mobile-app__faq {
  margin-top: 40px;
}

.page-resources-cwin-mobile-app__faq-item {
  background-color: #f2f2f2;
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-resources-cwin-mobile-app__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-cwin-mobile-app__faq-answer {
  font-size: 1.1em;
  color: #555;
}

.page-resources-cwin-mobile-app__return-link {
  text-align: center;
  margin-top: 50px;
}

.page-resources-cwin-mobile-app__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-cwin-mobile-app__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

@media (max-width: 768px) {
  .page-resources-cwin-mobile-app__title {
    font-size: 2.2em;
  }

  .page-resources-cwin-mobile-app__subtitle {
    font-size: 1.1em;
  }

  .page-resources-cwin-mobile-app__heading {
    font-size: 1.8em;
  }

  .page-resources-cwin-mobile-app__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-cwin-mobile-app__article-content {
    padding: 20px;
  }

  .page-resources-cwin-mobile-app__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-resources-cwin-mobile-app__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-cwin-mobile-app__title {
    font-size: 1.8em;
  }

  .page-resources-cwin-mobile-app__subtitle {
    font-size: 1em;
  }

  .page-resources-cwin-mobile-app__heading {
    font-size: 1.5em;
  }

  .page-resources-cwin-mobile-app__sub-heading {
    font-size: 1.2em;
  }

  .page-resources-cwin-mobile-app__hero-section {
    padding: 50px 0;
  }

  .page-resources-cwin-mobile-app__content-section {
    padding: 30px 0;
  }
}