/* style/download-center-ios-guide.css */

/* Variables for colors */
:root {
  --thabet-primary: #0A2463;
  --thabet-secondary: #FFD700;
  --thabet-text-light: #F8F8F8;
  --thabet-text-dark: #333333;
  --thabet-background-alt: #1a3a7a;
  --thabet-button-hover: #e6c200;
}

.page-download-center-ios-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--thabet-text-dark);
  background-color: var(--thabet-text-light);
}

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

.page-download-center-ios-guide__hero {
  background: linear-gradient(135deg, var(--thabet-primary) 0%, #1a3a7a 100%);
  color: var(--thabet-text-light);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-ios-guide__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--thabet-text-light);
  font-weight: bold;
}

.page-download-center-ios-guide__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-download-center-ios-guide__hero-subtitle a {
  color: var(--thabet-secondary);
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-ios-guide__hero-subtitle a:hover {
  text-decoration: underline;
}

.page-download-center-ios-guide__hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-ios-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-ios-guide__section--alt-bg {
  background-color: #f0f2f5;
}

.page-download-center-ios-guide__section--cta-bg {
  background-color: var(--thabet-primary);
  color: var(--thabet-text-light);
  padding: 80px 0;
}

.page-download-center-ios-guide__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center-ios-guide__cta-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: var(--thabet-primary);
  font-weight: bold;
}

.page-download-center-ios-guide__section--cta-bg .page-download-center-ios-guide__section-title,
.page-download-center-ios-guide__cta-title {
  color: var(--thabet-text-light);
}

.page-download-center-ios-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--thabet-text-dark);
}

.page-download-center-ios-guide__section--cta-bg .page-download-center-ios-guide__text-block,
.page-download-center-ios-guide__cta-text {
  color: rgba(255, 255, 255, 0.8);
}

.page-download-center-ios-guide__text-block a {
  color: var(--thabet-primary);
  text-decoration: none;
  font-weight: bold;
}

.page-download-center-ios-guide__section--cta-bg .page-download-center-ios-guide__text-block a,
.page-download-center-ios-guide__cta-text a {
  color: var(--thabet-secondary);
}

.page-download-center-ios-guide__text-block a:hover {
  text-decoration: underline;
}

.page-download-center-ios-guide__button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios-guide__button--primary {
  background-color: var(--thabet-secondary);
  color: var(--thabet-primary);
  border: 2px solid var(--thabet-secondary);
}

.page-download-center-ios-guide__button--primary:hover {
  background-color: var(--thabet-button-hover);
  transform: translateY(-3px);
}

.page-download-center-ios-guide__button--secondary {
  background-color: transparent;
  color: var(--thabet-secondary);
  border: 2px solid var(--thabet-secondary);
}

.page-download-center-ios-guide__button--secondary:hover {
  background-color: var(--thabet-secondary);
  color: var(--thabet-primary);
  transform: translateY(-3px);
}

.page-download-center-ios-guide__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-ios-guide__feature-item {
  background-color: var(--thabet-text-light);
  border-radius: 10px;
  padding: 30px;
  width: calc(25% - 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-download-center-ios-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-download-center-ios-guide__feature-title {
  font-size: 1.4em;
  color: var(--thabet-primary);
  margin-bottom: 10px;
}

.page-download-center-ios-guide__feature-item p {
  color: var(--thabet-text-dark);
}

.page-download-center-ios-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-download-center-ios-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--thabet-text-light);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-download-center-ios-guide__step-item:nth-child(even) {
  background-color: #e9ecef;
}

.page-download-center-ios-guide__step-number {
  background-color: var(--thabet-secondary);
  color: var(--thabet-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios-guide__step-title {
  font-size: 1.8em;
  color: var(--thabet-primary);
  margin-bottom: 15px;
}

.page-download-center-ios-guide__step-item p {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 700px;
  color: var(--thabet-text-dark);
}

.page-download-center-ios-guide__step-item p a {
  color: var(--thabet-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-download-center-ios-guide__step-item p a:hover {
  text-decoration: underline;
}

.page-download-center-ios-guide__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-ios-guide__list li {
  background-color: #f8f9fa;
  border-left: 5px solid var(--thabet-secondary);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--thabet-text-dark);
}

.page-download-center-ios-guide__list li strong {
  color: var(--thabet-primary);
}

.page-download-center-ios-guide__step-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-download-center-ios-guide__faq-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-download-center-ios-guide__faq-list li {
  background-color: var(--thabet-text-light);
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-ios-guide__faq-question {
  font-size: 1.3em;
  color: var(--thabet-primary);
  margin-bottom: 10px;
}

.page-download-center-ios-guide__faq-answer {
  font-size: 1em;
  color: var(--thabet-text-dark);
}

.page-download-center-ios-guide__faq-answer a {
  color: var(--thabet-primary);
  font-weight: bold;
  text-decoration: none;
}

.page-download-center-ios-guide__faq-answer a:hover {
  text-decoration: underline;
}

.page-download-center-ios-guide__troubleshooting-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-download-center-ios-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--thabet-text-light);
}

.page-download-center-ios-guide__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.page-download-center-ios-guide__cta-text a {
  color: var(--thabet-secondary);
  font-weight: bold;
  text-decoration: none;
}

.page-download-center-ios-guide__cta-text a:hover {
  text-decoration: underline;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-ios-guide__hero-title {
    font-size: 2.5em;
  }
  .page-download-center-ios-guide__section-title {
    font-size: 2em;
  }
  .page-download-center-ios-guide__features {
    flex-direction: column;
    align-items: center;
  }
  .page-download-center-ios-guide__feature-item {
    width: 80%;
  }
  .page-download-center-ios-guide__step-item {
    padding: 30px;
  }
  .page-download-center-ios-guide__step-title {
    font-size: 1.5em;
  }
  .page-download-center-ios-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-download-center-ios-guide__hero-title {
    font-size: 2em;
  }
  .page-download-center-ios-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-ios-guide__section-title {
    font-size: 1.8em;
  }
  .page-download-center-ios-guide__text-block {
    font-size: 0.95em;
  }
  .page-download-center-ios-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-ios-guide__feature-item {
    width: 90%;
  }
  .page-download-center-ios-guide__step-item {
    padding: 25px;
  }
  .page-download-center-ios-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-download-center-ios-guide__step-title {
    font-size: 1.3em;
  }
  .page-download-center-ios-guide__list li {
    font-size: 0.95em;
  }
  .page-download-center-ios-guide__faq-question {
    font-size: 1.1em;
  }
  .page-download-center-ios-guide__faq-answer {
    font-size: 0.9em;
  }
  .page-download-center-ios-guide__cta-title {
    font-size: 1.8em;
  }
  .page-download-center-ios-guide__cta-text {
    font-size: 1em;
  }
}