/* style/app-download-ios.css */
.page-app-download-ios {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-app-download-ios-hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-app-download-ios-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}

.page-app-download-ios-hero > .page-app-download-ios-container {
  position: relative;
  z-index: 1;
}

.page-app-download-ios-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-app-download-ios-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: 2px solid transparent;
}

.page-app-download-ios-btn-primary {
  background-color: #ffc107;
  color: #333;
  border-color: #ffc107;
}

.page-app-download-ios-btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-btn-secondary {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-app-download-ios-btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-btn-outline {
  background-color: transparent;
  color: #ffc107;
  border-color: #ffc107;
  margin-left: 20px;
}

.page-app-download-ios-btn-outline:hover {
  background-color: #ffc107;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-hero-image-wrapper {
  margin-top: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-app-download-ios-hero-image {
  max-width: 300px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  transition: transform 0.5s ease-in-out;
}

.page-app-download-ios-hero-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.page-app-download-ios-section {
  padding: 80px 0;
  text-align: center;
}

.page-app-download-ios-section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-app-download-ios-section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #007bff;
  font-weight: 700;
}

.page-app-download-ios-section-description {
  font-size: 1.2em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

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

.page-app-download-ios-grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-ios-grid-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-app-download-ios-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-app-download-ios-download-steps .page-app-download-ios-section-title {
  color: #ffc107;
}

.page-app-download-ios-steps-list {
  text-align: left;
  margin-top: 50px;
}

.page-app-download-ios-step-item {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  padding-left: 90px;
}

.page-app-download-ios-step-number {
  position: absolute;
  left: 30px;
  top: 40px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-ios-step-item h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-app-download-ios-step-item p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-app-download-ios-step-item ol {
  margin-left: 20px;
  list-style-type: decimal;
  color: #444;
  font-size: 1.05em;
}

.page-app-download-ios-step-item ol li {
  margin-bottom: 10px;
}

.page-app-download-ios-qr-code {
  margin-top: 20px;
  text-align: center;
}

.page-app-download-ios-qr-image {
  width: 180px;
  height: 180px;
  border: 5px solid #ffc107;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-qr-code p {
  font-size: 1em;
  color: #555;
  margin-top: 10px;
}

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

.page-app-download-ios-faq {
  background-color: #f8f9fa;
}

.page-app-download-ios-faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-app-download-ios-faq-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-app-download-ios-faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-ios-faq-item h3 {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

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

.page-app-download-ios-cta {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  padding: 80px 0;
  color: #333;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.page-app-download-ios-cta .page-app-download-ios-section-title {
  color: #333;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-app-download-ios-cta .page-app-download-ios-section-description {
  color: #444;
  margin-bottom: 40px;
}

.page-app-download-ios-cta .page-app-download-ios-btn-primary {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-app-download-ios-cta .page-app-download-ios-btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-app-download-ios-cta .page-app-download-ios-btn-outline {
  color: #007bff;
  border-color: #007bff;
  background-color: transparent;
}

.page-app-download-ios-cta .page-app-download-ios-btn-outline:hover {
  background-color: #007bff;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-ios-title {
    font-size: 2.8em;
  }
  .page-app-download-ios-subtitle {
    font-size: 1.3em;
  }
  .page-app-download-ios-section-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-app-download-ios-step-item {
    padding-left: 70px;
  }
  .page-app-download-ios-step-number {
    width: 38px;
    height: 38px;
    font-size: 1.5em;
    left: 20px;
    top: 30px;
  }
}

@media (max-width: 768px) {
  .page-app-download-ios-hero {
    padding: 80px 0;
  }
  .page-app-download-ios-title {
    font-size: 2.2em;
  }
  .page-app-download-ios-subtitle {
    font-size: 1.1em;
  }
  .page-app-download-ios-section {
    padding: 60px 0;
  }
  .page-app-download-ios-section-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-ios-hero-image {
    max-width: 250px;
  }
  .page-app-download-ios-btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-app-download-ios-step-item {
    padding: 30px 20px 30px 70px;
  }
  .page-app-download-ios-step-number {
    width: 35px;
    height: 35px;
    font-size: 1.4em;
    left: 20px;
    top: 25px;
  }
}

@media (max-width: 480px) {
  .page-app-download-ios-hero {
    padding: 60px 0;
  }
  .page-app-download-ios-title {
    font-size: 1.8em;
  }
  .page-app-download-ios-subtitle {
    font-size: 1em;
  }
  .page-app-download-ios-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-app-download-ios-section {
    padding: 40px 0;
  }
  .page-app-download-ios-section-title {
    font-size: 1.5em;
  }
  .page-app-download-ios-section-description {
    font-size: 0.95em;
  }
  .page-app-download-ios-grid-item h3 {
    font-size: 1.3em;
  }
  .page-app-download-ios-grid-item p {
    font-size: 0.9em;
  }
  .page-app-download-ios-step-item {
    padding: 25px 15px 25px 60px;
  }
  .page-app-download-ios-step-number {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    left: 15px;
    top: 20px;
  }
  .page-app-download-ios-qr-image {
    width: 150px;
    height: 150px;
  }
  .page-app-download-ios-faq-item h3 {
    font-size: 1.2em;
  }
  .page-app-download-ios-faq-item p {
    font-size: 0.9em;
  }
}