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

.page-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide__section {
  padding: 60px 0;
}

.page-beginner-guide__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-beginner-guide__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker shade of primary for contrast */
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-beginner-guide__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide__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;
  font-size: 1.1em;
  text-align: center;
}

.page-beginner-guide__btn--primary {
  background-color: #28a745; /* Auxiliary color for primary CTA */
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-beginner-guide__btn--primary:hover {
  background-color: #218838;
  border-color: #218838;
  transform: translateY(-2px);
}

.page-beginner-guide__btn--secondary {
  background-color: #007bff; /* Primary color for secondary CTA */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-beginner-guide__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-beginner-guide__btn--link {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 10px 20px;
  font-size: 1em;
}

.page-beginner-guide__btn--link:hover {
  background-color: #007bff;
  color: #ffffff;
}

.page-beginner-guide__intro .page-beginner-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-beginner-guide__intro .page-beginner-guide__content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-beginner-guide__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-beginner-guide__text-content h3 {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-beginner-guide__list li {
  margin-bottom: 10px;
  color: #444;
}

.page-beginner-guide__image-wrapper {
  text-align: center;
}

.page-beginner-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__steps {
  background-color: #ffffff;
}

.page-beginner-guide__step-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #007bff;
}

.page-beginner-guide__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #28a745; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  display: inline-block;
  background-color: #e2f9e7; /* Light background for icon */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.page-beginner-guide__step-card h3 {
  font-size: 2em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-beginner-guide__step-card p {
  color: #555;
  margin-bottom: 25px;
}

.page-beginner-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-beginner-guide__app-promo .page-beginner-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-beginner-guide__app-promo .page-beginner-guide__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-beginner-guide__app-promo .page-beginner-guide__text-content {
    order: 1; /* Text first on larger screens */
  }
  .page-beginner-guide__app-promo .page-beginner-guide__image-wrapper {
    order: 2;
  }
}

.page-beginner-guide__related-guides {
  background-color: #f0f8ff;
}

.page-beginner-guide__grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-beginner-guide__list-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  border-left: 5px solid #28a745;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide__list-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-beginner-guide__list-item h3 a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide__list-item h3 a:hover {
  text-decoration: underline;
}

.page-beginner-guide__list-item p {
  color: #666;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.page-beginner-guide__cta-bottom {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide__cta-bottom .page-beginner-guide__section-title {
  color: #ffffff;
}

.page-beginner-guide__cta-bottom .page-beginner-guide__section-description {
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 1.3em;
  }
  .page-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-beginner-guide__step-card h3 {
    font-size: 1.7em;
  }
}

@media (max-width: 767px) {
  .page-beginner-guide__hero {
    padding: 60px 0;
  }
  .page-beginner-guide__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide__section {
    padding: 40px 0;
  }
  .page-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__section-description {
    font-size: 1em;
  }
  .page-beginner-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-beginner-guide__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2em;
  }
  .page-beginner-guide__step-card h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide__grid-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__cta-bottom {
    padding: 50px 0;
  }
}

/* Placeholder for floating ad/CTA menu - No actual styling here, just for conceptual clarity */
.page-beginner-guide__floating-ad-placeholder {
  /* This element is a conceptual placeholder. In a real implementation, 
  it would be styled as a fixed/sticky element outside the main content flow 
  to persistently offer registration/download CTAs. 
  Since this output only generates the main tag content, we acknowledge its need here. */
  display: none; /* Hide this placeholder div in actual page content */
}