/* style/new-user-guide.css */

/* Base styles for the new-user-guide page */
.page-new-user-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Fallback for body text */
  background-color: var(--background-color);
}

.page-new-user-guide__section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-new-user-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--background-color); /* Deep Green */
  color: var(--text-main-color); /* F2FFF6 */
  overflow: hidden;
}

.page-new-user-guide__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-new-user-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-new-user-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-new-user-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary-color); /* A7D9B8 */
}

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

.page-new-user-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-new-user-guide__btn-primary,
.page-new-user-guide__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-new-user-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main-color); /* F2FFF6 */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-new-user-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-new-user-guide__btn-primary--large {
    font-size: 1.2em;
    padding: 16px 40px;
}

.page-new-user-guide__btn-secondary {
  background: transparent;
  color: var(--gold-color); /* F2C14E */
  border: 2px solid var(--gold-color); /* F2C14E */
}

.page-new-user-guide__btn-secondary:hover {
  background: var(--gold-color); /* F2C14E */
  color: var(--background-color); /* 08160F */
  transform: translateY(-2px);
}

.page-new-user-guide__content-area {
  padding: 60px 0;
}

.page-new-user-guide__light-bg {
  background-color: var(--card-bg-color); /* 11271B */
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__dark-section {
  background-color: var(--deep-green-color); /* 0A4B2C */
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__sub-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--gold-color); /* F2C14E */
}

.page-new-user-guide__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary-color); /* A7D9B8 */
}

.page-new-user-guide__list,
.page-new-user-guide__ordered-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-new-user-guide__list-item,
.page-new-user-guide__ordered-list-item {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
  color: var(--text-secondary-color); /* A7D9B8 */
}

.page-new-user-guide__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--glow-color); /* 57E38D */
  font-weight: bold;
}

.page-new-user-guide__ordered-list-item {
    counter-increment: list-counter;
}

.page-new-user-guide__ordered-list-item::before {
    content: counter(list-counter) ". ";
    position: absolute;
    left: 0;
    color: var(--glow-color); /* 57E38D */
    font-weight: bold;
}

.page-new-user-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-new-user-guide__faq-list {
  margin-top: 40px;
}

.page-new-user-guide__faq-item {
  background-color: var(--card-bg-color); /* 11271B */
  border: 1px solid var(--border-color); /* 2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15em;
  color: var(--text-main-color); /* F2FFF6 */
  position: relative;
  transition: background-color 0.3s ease;
}

.page-new-user-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-new-user-guide__faq-item summary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter border color */
}

.page-new-user-guide__faq-qtext {
  flex-grow: 1;
  color: var(--text-main-color); /* F2FFF6 */
}

.page-new-user-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color); /* 57E38D */
}

.page-new-user-guide__faq-item[open] .page-new-user-guide__faq-toggle {
  content: '−';
}

.page-new-user-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.0em;
  line-height: 1.6;
  color: var(--text-secondary-color); /* A7D9B8 */
}

.page-new-user-guide__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-new-user-guide__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-new-user-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-new-user-guide__description {
    font-size: 1em;
  }
  .page-new-user-guide__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }
  .page-new-user-guide__sub-title {
    font-size: clamp(1.2em, 3vw, 1.8em);
  }
  .page-new-user-guide__content-area {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-new-user-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-new-user-guide__hero-section {
    padding: 10px 0 30px 0;
  }
  .page-new-user-guide__hero-content {
    padding: 0 15px;
  }
  .page-new-user-guide__main-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }
  .page-new-user-guide__description {
    font-size: 0.95em;
  }
  .page-new-user-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-new-user-guide__btn-primary,
  .page-new-user-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-new-user-guide__section-container {
    padding: 0 15px;
  }
  .page-new-user-guide__section-title {
    font-size: clamp(1.4em, 6vw, 2em);
  }
  .page-new-user-guide__sub-title {
    font-size: clamp(1.1em, 4.5vw, 1.6em);
  }
  .page-new-user-guide__text-block,
  .page-new-user-guide__list-item,
  .page-new-user-guide__ordered-list-item {
    font-size: 0.95em;
  }
  .page-new-user-guide__content-area {
    padding: 30px 0;
  }
  .page-new-user-guide__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-new-user-guide__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-new-user-guide__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-new-user-guide__main-title {
    font-size: clamp(1.4em, 8vw, 2.2em);
  }
  .page-new-user-guide__description {
    font-size: 0.9em;
  }
  .page-new-user-guide__section-title {
    font-size: clamp(1.2em, 7vw, 1.8em);
  }
  .page-new-user-guide__sub-title {
    font-size: clamp(1em, 5vw, 1.4em);
  }
  .page-new-user-guide__faq-item summary {
    font-size: 0.95em;
  }
}