:root {
  /* Custom Colors */
  --color-main-bg: #08160F;
  --color-card-bg: #11271B;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-button-hover: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Adjusted for hover */
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-border: #2E7A4E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;

  /* Brand Colors from prompt */
  --primary-color: #11A84E; /* Main tone */
  --secondary-color: #22C768; /* Auxiliary tone */
}

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-index {
  background-color: var(--color-main-bg); /* Use the specified background color for the main content area */
  color: var(--color-text-main); /* Light text on dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top for header offset */
}

.page-index__section-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.3); /* Soft glow */
}

.page-index__section-description {
  font-size: 18px;
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* General container for sections */
.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Dark background sections */
.page-index__dark-section {
  background-color: var(--color-card-bg); /* Use Card BG for dark sections */
  color: var(--color-text-main);
}

/* CTA Buttons styling */
.page-index__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-index__cta-buttons--centered {
  justify-content: center;
}

.page-index__cta-button,
.page-index__btn-small {
  display: inline-block;
  padding: 15px 40px;
  background: var(--color-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box; /* For responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-index__cta-button:hover,
.page-index__btn-small:hover {
  background: var(--color-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button:active,
.page-index__btn-small:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-index__btn-small {
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 5px;
}