/* style/beginner-guide-get-started.css */

:root {
  --page-beginner-guide-get-started-primary-color: #0A6847;
  --page-beginner-guide-get-started-secondary-color: #FFD700;
  --page-beginner-guide-get-started-text-dark: #2c3e50;
  --page-beginner-guide-get-started-text-light: #ffffff;
  --page-beginner-guide-get-started-background-light: #f8f9fa;
  --page-beginner-guide-get-started-background-grey: #e9ecef;
  --page-beginner-guide-get-started-border-color: #dee2e6;
}

.page-beginner-guide-get-started {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-beginner-guide-get-started-text-dark);
  background-color: var(--page-beginner-guide-get-started-background-light);
}

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

/* Hero Section */
.page-beginner-guide-get-started__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--page-beginner-guide-get-started-primary-color) 0%, #0c835a 100%);
  color: var(--page-beginner-guide-get-started-text-light);
  padding: 80px 20px;
  text-align: center;
  gap: 40px;
}

.page-beginner-guide-get-started__hero-content {
  max-width: 800px;
}

.page-beginner-guide-get-started__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-beginner-guide-get-started-secondary-color);
}

.page-beginner-guide-get-started__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-get-started__hero-button {
  display: inline-block;
  background-color: var(--page-beginner-guide-get-started-secondary-color);
  color: var(--page-beginner-guide-get-started-primary-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-get-started__hero-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-beginner-guide-get-started__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}

.page-beginner-guide-get-started__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-beginner-guide-get-started__section {
  padding: 60px 0;
  background-color: var(--page-beginner-guide-get-started-background-light);
}

.page-beginner-guide-get-started__section:nth-of-type(even) {
  background-color: var(--page-beginner-guide-get-started-background-grey);
}

.page-beginner-guide-get-started__section-title {
  font-size: 2.5em;
  color: var(--page-beginner-guide-get-started-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-get-started__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-beginner-guide-get-started-secondary-color);
  border-radius: 2px;
}

.page-beginner-guide-get-started__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-beginner-guide-get-started__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* List Styles */
.page-beginner-guide-get-started__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-beginner-guide-get-started__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid var(--page-beginner-guide-get-started-primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
}

.page-beginner-guide-get-started__list li strong {
  color: var(--page-beginner-guide-get-started-primary-color);
}

/* Grid for Cards */
.page-beginner-guide-get-started__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-get-started__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-beginner-guide-get-started__card:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-get-started__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-beginner-guide-get-started__card-title {
  font-size: 1.5em;
  color: var(--page-beginner-guide-get-started-primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide-get-started__card p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
}

.page-beginner-guide-get-started__card-button {
  display: inline-block;
  margin-top: 20px;
  background-color: var(--page-beginner-guide-get-started-secondary-color);
  color: var(--page-beginner-guide-get-started-primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-get-started__card-button:hover {
  background-color: #e6b800;
}

/* Numbered List for Guide */
.page-beginner-guide-get-started__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: section-counter;
}

.page-beginner-guide-get-started__numbered-list li {
  margin-bottom: 40px;
  position: relative;
  padding-left: 80px;
}

.page-beginner-guide-get-started__numbered-list li::before {
  counter-increment: section-counter;
  content: counter(section-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--page-beginner-guide-get-started-primary-color);
  color: var(--page-beginner-guide-get-started-text-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-get-started__numbered-list li h3 {
  font-size: 1.8em;
  color: var(--page-beginner-guide-get-started-primary-color);
  margin-bottom: 10px;
}

.page-beginner-guide-get-started__numbered-list li p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-beginner-guide-get-started__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-get-started__button--primary {
  background-color: var(--page-beginner-guide-get-started-primary-color);
  color: var(--page-beginner-guide-get-started-text-light);
}

.page-beginner-guide-get-started__button--primary:hover {
  background-color: #074a33;
  transform: translateY(-2px);
}

.page-beginner-guide-get-started__button--secondary {
  background-color: var(--page-beginner-guide-get-started-secondary-color);
  color: var(--page-beginner-guide-get-started-primary-color);
  border: 2px solid var(--page-beginner-guide-get-started-secondary-color);
}

.page-beginner-guide-get-started__button--secondary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

/* Strategy Section */
.page-beginner-guide-get-started__grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-beginner-guide-get-started__strategy-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-beginner-guide-get-started__strategy-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-get-started__strategy-item h3 {
  font-size: 1.6em;
  color: var(--page-beginner-guide-get-started-primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide-get-started__strategy-item p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
}

.page-beginner-guide-get-started__button--tertiary {
  background-color: transparent;
  color: var(--page-beginner-guide-get-started-primary-color);
  border: 2px solid var(--page-beginner-guide-get-started-primary-color);
  margin-top: 20px;
}

.page-beginner-guide-get-started__button--tertiary:hover {
  background-color: var(--page-beginner-guide-get-started-primary-color);
  color: var(--page-beginner-guide-get-started-text-light);
  transform: translateY(-2px);
}

/* FAQ Section */
.page-beginner-guide-get-started__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-get-started__faq-question {
  font-size: 1.3em;
  color: var(--page-beginner-guide-get-started-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-get-started__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: var(--page-beginner-guide-get-started-secondary-color);
  transition: transform 0.3s ease;
}

.page-beginner-guide-get-started__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-get-started__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-beginner-guide-get-started__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* CTA Section */
.page-beginner-guide-get-started__cta {
  background: var(--page-beginner-guide-get-started-primary-color);
  color: var(--page-beginner-guide-get-started-text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-beginner-guide-get-started__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-beginner-guide-get-started-secondary-color);
}

.page-beginner-guide-get-started__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-get-started__cta-button {
  display: inline-block;
  background-color: var(--page-beginner-guide-get-started-secondary-color);
  color: var(--page-beginner-guide-get-started-primary-color);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-get-started__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-get-started__hero {
    flex-direction: column-reverse;
    padding: 60px 20px;
  }

  .page-beginner-guide-get-started__hero-title {
    font-size: 2.5em;
  }

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

  .page-beginner-guide-get-started__hero-image-wrapper {
    margin-top: 0;
    margin-bottom: 40px;
  }

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

  .page-beginner-guide-get-started__grid-3, .page-beginner-guide-get-started__grid-2 {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-get-started__numbered-list li {
    padding-left: 60px;
  }

  .page-beginner-guide-get-started__numbered-list li::before {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-beginner-guide-get-started__numbered-list li h3 {
    font-size: 1.5em;
  }

  .page-beginner-guide-get-started__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 576px) {
  .page-beginner-guide-get-started__hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-get-started__hero-description {
    font-size: 1em;
  }

  .page-beginner-guide-get-started__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-beginner-guide-get-started__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-get-started__card-title {
    font-size: 1.3em;
  }

  .page-beginner-guide-get-started__numbered-list li h3 {
    font-size: 1.3em;
  }

  .page-beginner-guide-get-started__cta-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-get-started__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-beginner-guide-get-started__faq-question {
    font-size: 1.1em;
  }
}