.page-app-download-ios-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-app-download-ios-tutorial__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-tutorial__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-ios-tutorial__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-tutorial__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-tutorial__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark Blue */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-app-download-ios-tutorial__cta-button:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
}

.page-app-download-ios-tutorial__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-app-download-ios-tutorial__content-section,
.page-app-download-ios-tutorial__steps-section,
.page-app-download-ios-tutorial__troubleshooting-section,
.page-app-download-ios-tutorial__tips-section,
.page-app-download-ios-tutorial__cta-bottom-section {
  padding: 80px 0;
}

.page-app-download-ios-tutorial__content-section {
  background-color: #ffffff;
}

.page-app-download-ios-tutorial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-app-download-ios-tutorial__feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-ios-tutorial__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-app-download-ios-tutorial__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 51, 102, 0.3));
}

.page-app-download-ios-tutorial__feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-ios-tutorial__feature-description {
  font-size: 1em;
  color: #666;
}

.page-app-download-ios-tutorial__steps-section {
  background-color: #eaf4ff;
}

.page-app-download-ios-tutorial__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-app-download-ios-tutorial__step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-tutorial__step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 51, 102, 0.3);
}

.page-app-download-ios-tutorial__step-content h3 {
  font-size: 1.6em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-app-download-ios-tutorial__step-content p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
}

.page-app-download-ios-tutorial__step-content ol {
  margin-left: 20px;
  padding-left: 0;
  list-style-type: decimal;
}

.page-app-download-ios-tutorial__step-content ol li {
  margin-bottom: 10px;
  color: #444;
}

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

.page-app-download-ios-tutorial__troubleshooting-section {
  background-color: #ffffff;
}

.page-app-download-ios-tutorial__troubleshoot-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-app-download-ios-tutorial__troubleshoot-list li {
  background-color: #f0f8ff;
  border-left: 5px solid #003366;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-app-download-ios-tutorial__troubleshoot-list li strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-app-download-ios-tutorial__troubleshoot-list li ul {
  margin-top: 10px;
  margin-left: 20px;
  list-style-type: disc;
  color: #555;
}

.page-app-download-ios-tutorial__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-tutorial__tips-section {
  background-color: #eaf4ff;
}

.page-app-download-ios-tutorial__grid-two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.page-app-download-ios-tutorial__tip-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #FFD700;
}

.page-app-download-ios-tutorial__tip-title {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-ios-tutorial__tip-item p {
  font-size: 1em;
  color: #666;
}

.page-app-download-ios-tutorial__cta-bottom-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-app-download-ios-tutorial__cta-bottom-section .page-app-download-ios-tutorial__section-title {
  color: #FFD700;
}

.page-app-download-ios-tutorial__cta-bottom-section .page-app-download-ios-tutorial__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
}

.page-app-download-ios-tutorial__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-app-download-ios-tutorial__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-app-download-ios-tutorial__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
}

.page-app-download-ios-tutorial__cta-button.page-app-download-ios-tutorial__cta-button--small {
  padding: 10px 25px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-app-download-ios-tutorial .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-app-download-ios-tutorial__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-ios-tutorial__hero-subtitle {
    font-size: 1.1em;
  }
  .page-app-download-ios-tutorial__section-title {
    font-size: 2em;
  }
  .page-app-download-ios-tutorial__grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-tutorial__step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .page-app-download-ios-tutorial__step-number {
    margin-bottom: 20px;
  }
  .page-app-download-ios-tutorial__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-tutorial__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-tutorial__hero-title {
    font-size: 2em;
  }
  .page-app-download-ios-tutorial__section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-tutorial__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-ios-tutorial__hero-section, 
  .page-app-download-ios-tutorial__content-section, 
  .page-app-download-ios-tutorial__steps-section, 
  .page-app-download-ios-tutorial__troubleshooting-section, 
  .page-app-download-ios-tutorial__tips-section, 
  .page-app-download-ios-tutorial__cta-bottom-section {
    padding: 60px 0;
  }
}