/* style/resources-app-download-install-guide.css */
.page-resources-app-download-install-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-resources-app-download-install-guide__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4150 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-app-download-install-guide__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-app-download-install-guide__subtitle {
  font-size: 1.3em;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-app-download-install-guide__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-resources-app-download-install-guide__hero-image {
  max-width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.page-resources-app-download-install-guide__hero-image:hover {
  transform: translateY(-5px);
}

.page-resources-app-download-install-guide__section {
  padding: 60px 0;
}

.page-resources-app-download-install-guide__section--alt-bg {
  background-color: #272c38; /* Slightly lighter dark background */
}

.page-resources-app-download-install-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-resources-app-download-install-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-app-download-install-guide__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #e5dfd3;
}

.page-resources-app-download-install-guide__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-app-download-install-guide__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-resources-app-download-install-guide__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-app-download-install-guide__list--small {
  list-style-type: circle;
  margin-left: 25px;
  font-size: 0.95em;
}

.page-resources-app-download-install-guide__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text for gold button */
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-resources-app-download-install-guide__btn:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-app-download-install-guide__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-app-download-install-guide__btn--secondary {
  background-color: #3f4757; /* Darker grey-blue for secondary */
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-resources-app-download-install-guide__btn--secondary:hover {
  background-color: #525c6e;
  color: #FFD700;
}

.page-resources-app-download-install-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin: 5px;
}

.page-resources-app-download-install-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-app-download-install-guide__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-app-download-install-guide__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-resources-app-download-install-guide__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-resources-app-download-install-guide__step-by-step--horizontal {
    grid-template-columns: 1fr 1fr;
  }
}

.page-resources-app-download-install-guide__step-item {
  background-color: #272c38;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-app-download-install-guide__step-item .page-resources-app-download-install-guide__text {
  text-align: center;
}

.page-resources-app-download-install-guide__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-app-download-install-guide__step-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
}

.page-resources-app-download-install-guide__image-wrapper {
  margin: 20px 0;
  text-align: center;
}

.page-resources-app-download-install-guide__image-wrapper--center {
  margin-top: 40px;
}

.page-resources-app-download-install-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-app-download-install-guide__image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-app-download-install-guide__troubleshooting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 992px) {
  .page-resources-app-download-install-guide__troubleshooting-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-resources-app-download-install-guide__troubleshooting-item {
  background-color: #272c38;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-app-download-install-guide__troubleshooting-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-app-download-install-guide__cta-section {
  text-align: center;
  background: linear-gradient(90deg, #1A202C, #3f4757);
  padding: 80px 0;
  border-top: 5px solid #FFD700;
}

.page-resources-app-download-install-guide__cta-section .page-resources-app-download-install-guide__section-title {
  color: #FFD700;
}

.page-resources-app-download-install-guide__cta-section .page-resources-app-download-install-guide__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-app-download-install-guide__main-title {
    font-size: 2.5em;
  }
  .page-resources-app-download-install-guide__subtitle {
    font-size: 1.1em;
  }
  .page-resources-app-download-install-guide__section-title {
    font-size: 2em;
  }
  .page-resources-app-download-install-guide__hero-image {
    max-width: 80%;
  }
  .page-resources-app-download-install-guide__list {
    margin-left: 20px;
  }
  .page-resources-app-download-install-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-app-download-install-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-app-download-install-guide__main-title {
    font-size: 2em;
  }
  .page-resources-app-download-install-guide__subtitle {
    font-size: 1em;
  }
  .page-resources-app-download-install-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-app-download-install-guide__hero-image {
    max-width: 95%;
  }
  .page-resources-app-download-install-guide__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-resources-app-download-install-guide__button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-resources-app-download-install-guide__step-item {
    padding: 20px;
  }
  .page-resources-app-download-install-guide__troubleshooting-item {
    padding: 20px;
  }
}