.page-index-getting-started {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-index-getting-started__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-getting-started__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px; /* Adjust padding as image is now within content */
}

.page-index-getting-started__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-getting-started__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

.page-index-getting-started__hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 20px 60px;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
  border-radius: 8px;
  margin-top: 50px; /* Adjust based on desired spacing */
  max-width: 900px;
  width: 100%;
}

.page-index-getting-started__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-getting-started__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-getting-started__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-getting-started__hero-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-index-getting-started__hero-btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-index-getting-started__hero-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-getting-started__hero-btn--secondary {
  background-color: #1A1A1A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-getting-started__hero-btn--secondary:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index-getting-started__introduction-section,
.page-index-getting-started__steps-section,
.page-index-getting-started__faq-section,
.page-index-getting-started__why-choose-section,
.page-index-getting-started__call-to-action-section,
.page-index-getting-started__related-resources-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-getting-started__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-getting-started__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-index-getting-started__steps-section {
  background-color: #1A1A1A;
}

.page-index-getting-started__step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-getting-started__step-icon-wrapper {
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 215, 0, 0.1);
}

.page-index-getting-started__step-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Make icons circular */
  min-width: 200px;
  min-height: 200px;
}

.page-index-getting-started__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-index-getting-started__step-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: center;
}

.page-index-getting-started__step-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 0.95em;
  min-width: 200px;
}

.page-index-getting-started__step-btn:hover {
  background-color: #e6c200;
}

.page-index-getting-started__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-getting-started__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-getting-started__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-getting-started__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

.page-index-getting-started__why-choose-section {
  background-color: #1A1A1A;
}

.page-index-getting-started__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-getting-started__feature-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-getting-started__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 50%; /* Circular icons */
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px;
}

.page-index-getting-started__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-getting-started__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-index-getting-started__call-to-action-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A1A, #333333);
}

.page-index-getting-started__call-to-action-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-getting-started__call-to-action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-index-getting-started__call-to-action-btn {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
}

.page-index-getting-started__call-to-action-btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-index-getting-started__call-to-action-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-getting-started__call-to-action-btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-getting-started__call-to-action-btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-index-getting-started__related-resources-section {
  background-color: #0d0d0d;
}

.page-index-getting-started__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-getting-started__resource-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-getting-started__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-index-getting-started__resource-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-index-getting-started__resource-card h3,
.page-index-getting-started__resource-card p {
  padding: 0 20px;
  text-align: left;
}

.page-index-getting-started__resource-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-index-getting-started__resource-text {
  font-size: 0.95em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-index-getting-started__more-resources {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-getting-started__more-resources-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px;
}

.page-index-getting-started__more-resources-btn:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-getting-started__hero-title {
    font-size: 3em;
  }
  .page-index-getting-started__hero-description {
    font-size: 1.2em;
  }
  .page-index-getting-started__section-title {
    font-size: 2em;
  }
  .page-index-getting-started__hero-content {
    padding: 80px 20px 40px;
  }
}

@media (max-width: 768px) {
  .page-index-getting-started__hero-title {
    font-size: 2.5em;
  }
  .page-index-getting-started__hero-description {
    font-size: 1em;
  }
  .page-index-getting-started__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-getting-started__hero-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-getting-started__hero-content {
    padding: 60px 15px 30px;
    margin-top: 20px;
  }
  .page-index-getting-started__section-title {
    font-size: 1.8em;
  }
  .page-index-getting-started__section-description {
    font-size: 0.95em;
  }
  .page-index-getting-started__step-card,
  .page-index-getting-started__feature-item,
  .page-index-getting-started__resource-card {
    padding: 20px;
  }
  .page-index-getting-started__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-getting-started__call-to-action-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-getting-started__more-resources {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-getting-started__more-resources-btn {
    width: 100%;
    max-width: 300px;
  }
  /* Content area images must not cause overflow */
  .page-index-getting-started img {
    max-width: 100%;
    height: auto;
  }
  .page-index-getting-started__hero-image {
    position: relative; /* Adjust for mobile to prevent content from floating over */
    height: 300px;
  }
  .page-index-getting-started__hero-section {
    padding-bottom: 0;
  }
  .page-index-getting-started__hero-content {
    position: relative;
    top: auto;
    transform: none;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .page-index-getting-started__hero-title {
    font-size: 2em;
  }
  .page-index-getting-started__hero-description {
    font-size: 0.9em;
  }
  .page-index-getting-started__hero-content {
    padding: 40px 10px 20px;
  }
  .page-index-getting-started__hero-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-getting-started__section-title {
    font-size: 1.5em;
  }
  .page-index-getting-started__section-description {
    font-size: 0.85em;
  }
  .page-index-getting-started__step-title {
    font-size: 1.5em;
  }
  .page-index-getting-started__faq-question {
    font-size: 1.1em;
  }
  .page-index-getting-started__feature-title {
    font-size: 1.3em;
  }
  .page-index-getting-started__call-to-action-btn {
    font-size: 1em;
    padding: 15px 25px;
  }
  .page-index-getting-started__resource-title {
    font-size: 1.1em;
  }
  .page-index-getting-started__resource-text {
    font-size: 0.85em;
  }
}