/* style/newbie-guide.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-color-light-bg: #333333;
  --text-color-dark-bg: #ffffff;
  --button-register-bg: #C30808;
  --button-login-bg: #C30808;
  --button-text-color: #FFFF00;
  --border-color: #e0e0e0;
  --card-bg: #ffffff;
  --section-padding-y: 60px;
}

.page-newbie-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-light-bg); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Matches body background */
}

.page-newbie-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-newbie-guide__section {
  padding: var(--section-padding-y) 0;
}

.page-newbie-guide__section--introduction {
  padding-top: calc(var(--section-padding-y) + 20px);
}

.page-newbie-guide__dark-section {
  background-color: var(--primary-color);
  color: var(--text-color-dark-bg);
}

.page-newbie-guide__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-newbie-guide__section-title--white {
  color: var(--text-color-dark-bg);
}

.page-newbie-guide p {
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-newbie-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #e0f2f1, #ffffff);
}

.page-newbie-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-newbie-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-newbie-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-newbie-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide__main-heading {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}}