body {
  background-color: #F6F3EB; /* Antique White */
}

header {
  background: #6B752F; /* Olive Green */
  color: #F6F3EB;
  padding: 2rem 0;
}

section[id] {
  scroll-margin-top: 60px; /* Adjust based on your actual navbar height */
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px; /* match the underline length from 'What We Offer' */
  border-bottom: 2px solid #6B752F;
  margin: 0.5rem auto 0 auto; /* centers the underline */
}

.bg-dark-blue {
  background-color: #000000; /* Jet Black */
}

.text-white {
  color: #F6F3EB !important; /* Antique White */
}

.btn-primary {
  background-color: #C2A83E; /* Army Gold */
  border-color: #C2A83E;
}

.btn-primary:hover {
  background-color: #A89132;
  border-color: #A89132;
}

form label {
  color: #4A4444; /* Slate Gray */
}

form input {
  border: 1px solid #D9CBA3; /* Desert Tan */
}

form input:focus {
  border-color: #6B752F; /* Olive Green */
  box-shadow: 0 0 0 0.2rem rgba(107, 117, 47, 0.25);
}

/* Sticky Navigation */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.navbar-logo {
  max-height: 40px;
}

.hero-section {
  background: url('images/hero.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-section p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Ensure readability and position on smaller screens */
@media (max-width: 768px) {
  .hero-section {
    background-position: center top;
    background-size: cover;
    padding: 3rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p.lead {
    font-size: 1.1rem;
  }
}

#realities h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#realities p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}

#realities img {
  max-width: 85%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-section-with-bg {
  background: url('images/form-background.jpg') center center / cover no-repeat;
  position: relative;
  z-index: 1;
}

.form-section-with-bg::before {
  content: "";
  background-color: rgba(246, 243, 235, 0.85); /* Brand's Antique White with slight transparency */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#stories video {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

#stories blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #333;
}

#stories .blockquote-footer {
  margin-top: 0.5rem;
  color: #6B752F;
  font-weight: 500;
}