/* style/beginner-guide-getting-started.css */
.page-beginner-guide-getting-started {
  color: #ffffff; /* Body background is dark #1a1a2e, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e;
}

.page-beginner-guide-getting-started__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-beginner-guide-getting-started__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top: var(--header-offset); */
}

.page-beginner-guide-getting-started__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-beginner-guide-getting-started__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-beginner-guide-getting-started__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-beginner-guide-getting-started__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-beginner-guide-getting-started__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide-getting-started__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Section Styles */
.page-beginner-guide-getting-started__section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-beginner-guide-getting-started__section:nth-of-type(even) {
  background-color: #202038;
}

.page-beginner-guide-getting-started__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-beginner-guide-getting-started__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide-getting-started__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-beginner-guide-getting-started__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-beginner-guide-getting-started__list,
.page-beginner-guide-getting-started__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-beginner-guide-getting-started__ordered-list {
  list-style-type: decimal;
}

.page-beginner-guide-getting-started__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-getting-started__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-beginner-guide-getting-started__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto;
}

/* Buttons */
.page-beginner-guide-getting-started__btn-primary,
.page-beginner-guide-getting-started__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-beginner-guide-getting-started__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-beginner-guide-getting-started__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-beginner-guide-getting-started__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-beginner-guide-getting-started__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-beginner-guide-getting-started__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-beginner-guide-getting-started__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-beginner-guide-getting-started__link:hover {
  color: #1e87b8;
}

/* FAQ Section */
.page-beginner-guide-getting-started__faq-list {
  margin-top: 30px;
}

.page-beginner-guide-getting-started__faq-item {
  background-color: #202038;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-getting-started__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #262640;
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid #26A9E0;
}

.page-beginner-guide-getting-started__faq-question:hover {
  background-color: #2e2e4e;
}

.page-beginner-guide-getting-started__faq-title {
  margin: 0;
  color: #FFFFFF;
}

.page-beginner-guide-getting-started__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-beginner-guide-getting-started__faq-item.active .page-beginner-guide-getting-started__faq-toggle {
  transform: rotate(45deg);
}

.page-beginner-guide-getting-started__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-beginner-guide-getting-started__faq-item.active .page-beginner-guide-getting-started__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-beginner-guide-getting-started__hero-title {
    font-size: 3em;
  }

  .page-beginner-guide-getting-started__hero-description {
    font-size: 1.1em;
  }

  .page-beginner-guide-getting-started__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  /* HERO主图区域 */
  .page-beginner-guide-getting-started__hero-section {
    height: 500px;
    padding-top: 0; /* Ensures no double padding if shared.css sets body padding */
  }

  .page-beginner-guide-getting-started__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-beginner-guide-getting-started__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-beginner-guide-getting-started__hero-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  /* 其他内容模块 */
  .page-beginner-guide-getting-started__section {
    padding: 40px 0;
  }

  .page-beginner-guide-getting-started__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-beginner-guide-getting-started__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-beginner-guide-getting-started__sub-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-getting-started__paragraph,
  .page-beginner-guide-getting-started__list-item {
    font-size: 1em;
  }

  /* 通用图片与容器 */
  .page-beginner-guide-getting-started img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .page-beginner-guide-getting-started__image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* 按钮与按钮容器 */
  .page-beginner-guide-getting-started__btn-primary,
  .page-beginner-guide-getting-started__btn-secondary,
  .page-beginner-guide-getting-started a[class*="button"],
  .page-beginner-guide-getting-started a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-beginner-guide-getting-started__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }

  /* FAQ Section */
  .page-beginner-guide-getting-started__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-beginner-guide-getting-started__faq-answer {
    padding: 15px;
  }

  .page-beginner-guide-getting-started__faq-item.active .page-beginner-guide-getting-started__faq-answer {
    padding: 15px !important;
  }
}