/* style/newbie-guide-first-steps.css */
.page-newbie-guide-first-steps {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for readability on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

.page-newbie-guide-first-steps__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-first-steps__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-newbie-guide-first-steps__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-newbie-guide-first-steps__hero-description {
  font-size: 1.2em;
  color: #FFFFFF; /* White for good contrast */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-newbie-guide-first-steps__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  transform: translateX(20%) translateY(20%);
}

.page-newbie-guide-first-steps__section {
  padding: 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-newbie-guide-first-steps__section:nth-of-type(odd) .page-newbie-guide-first-steps__container {
  order: 1;
}

.page-newbie-guide-first-steps__section:nth-of-type(odd) .page-newbie-guide-first-steps__image--right {
  order: 2;
}

.page-newbie-guide-first-steps__section:nth-of-type(even) .page-newbie-guide-first-steps__container {
  order: 2;
}

.page-newbie-guide-first-steps__section:nth-of-type(even) .page-newbie-guide-first-steps__image--left {
  order: 1;
}

.page-newbie-guide-first-steps__section--alt-bg {
  background-color: #1A3A60; /* Slightly lighter dark blue */
}

.page-newbie-guide-first-steps__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  text-align: left;
  font-weight: bold;
}

.page-newbie-guide-first-steps__subsection-title {
  font-size: 1.8em;
  color: #FFFFFF; /* White for sub-titles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-newbie-guide-first-steps__list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-newbie-guide-first-steps__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-newbie-guide-first-steps__list--check {
  list-style-type: none;
  margin-left: 0;
}

.page-newbie-guide-first-steps__list--check li::before {
  content: '✓ ';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
}

.page-newbie-guide-first-steps__features-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-newbie-guide-first-steps__features-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-newbie-guide-first-steps__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: none;
  cursor: pointer;
}

.page-newbie-guide-first-steps__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-newbie-guide-first-steps__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-newbie-guide-first-steps__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-newbie-guide-first-steps__image--right,
.page-newbie-guide-first-steps__image--left {
  width: 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-first-steps__faq-item {
  background-color: #1A3A60; /* Lighter dark blue for FAQ items */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-steps__faq-question {
  color: #FFD700; /* Gold for questions */
  font-size: 1.3em;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-newbie-guide-first-steps__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-newbie-guide-first-steps__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-newbie-guide-first-steps__faq-answer {
  color: #E0E0E0; /* Light gray for answers */
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-newbie-guide-first-steps__faq-answer p {
  margin-bottom: 0;
}

.page-newbie-guide-first-steps__cta {
  background: linear-gradient(45deg, #0A2342, #FFD700); /* Striking gradient for CTA */
  padding: 100px 0;
  text-align: center;
  color: #0A2342;
}

.page-newbie-guide-first-steps__cta-title {
  font-size: 3em;
  color: #0A2342; /* Dark blue on gold gradient */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-newbie-guide-first-steps__cta-description {
  font-size: 1.3em;
  color: #333;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-newbie-guide-first-steps__hero-title {
    font-size: 2.8em;
  }
  .page-newbie-guide-first-steps__section {
    flex-direction: column;
    text-align: center;
  }
  .page-newbie-guide-first-steps__section .page-newbie-guide-first-steps__container,
  .page-newbie-guide-first-steps__section .page-newbie-guide-first-steps__image--right,
  .page-newbie-guide-first-steps__section .page-newbie-guide-first-steps__image--left {
    order: unset;
    width: 100%;
    max-width: 700px;
  }
  .page-newbie-guide-first-steps__image--right,
  .page-newbie-guide-first-steps__image--left {
    margin-top: 40px;
  }
  .page-newbie-guide-first-steps__section-title {
    font-size: 2em;
    text-align: center;
  }
  .page-newbie-guide-first-steps__subsection-title {
    font-size: 1.5em;
  }
  .page-newbie-guide-first-steps__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-newbie-guide-first-steps__hero {
    padding: 60px 0;
  }
  .page-newbie-guide-first-steps__hero-title {
    font-size: 2.2em;
  }
  .page-newbie-guide-first-steps__hero-description {
    font-size: 1em;
  }
  .page-newbie-guide-first-steps__hero-image {
    display: none;
  }
  .page-newbie-guide-first-steps__section {
    padding: 60px 0;
  }
  .page-newbie-guide-first-steps__section-title {
    font-size: 1.8em;
  }
  .page-newbie-guide-first-steps__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-newbie-guide-first-steps__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-newbie-guide-first-steps__cta-title {
    font-size: 2em;
  }
  .page-newbie-guide-first-steps__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide-first-steps__container {
    padding: 0 15px;
  }
  .page-newbie-guide-first-steps__hero-title {
    font-size: 1.8em;
  }
  .page-newbie-guide-first-steps__section-title {
    font-size: 1.5em;
  }
  .page-newbie-guide-first-steps__subsection-title {
    font-size: 1.3em;
  }
  .page-newbie-guide-first-steps__list li,
  .page-newbie-guide-first-steps__features-list li,
  .page-newbie-guide-first-steps__faq-answer {
    font-size: 0.95em;
  }
  .page-newbie-guide-first-steps__faq-question {
    font-size: 1.1em;
  }
  .page-newbie-guide-first-steps__cta-title {
    font-size: 1.8em;
  }
  .page-newbie-guide-first-steps__cta-description {
    font-size: 1em;
  }
  .page-newbie-guide-first-steps__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}