body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: #222;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h2.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

h3.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #222;
}

.navbar {
  background-color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: #5b789f !important;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: #1ea564 !important;
}

.hero {
  position: relative;
  height: 90vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* semi-transparent grey */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  color: white;
}

.btn-main {
  background-color: #1ea564;
  color: white;
  margin: 0.75rem;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-main:hover {
  background-color: #168a4e;
}

.section {
  padding: 5rem 2rem;
  margin: 0 auto;
}

.section.bg-blue {
  background-color: #5b789f;
  color: white;
}

.section.bg-green {
  background-color: #1ea564;
  color: white;
}

.section-title {
  margin-bottom: 2rem;
}

.section p {
  max-width: 850px;
  margin: 0 auto;
}

.section.container .row > div p {
  max-width: none;
  margin: 0;
  color: inherit;
}

.footer {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: #555;
}

.footer a {
  color: #5b789f;
  margin: 0 0.6rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #1ea564;
}

.social-icons i {
  font-size: 2rem;
  margin: 0 0.75rem;
  color: #5b789f;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #1ea564;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  h2.section-title {
    font-size: 2rem;
  }

  h3.section-title {
    font-size: 1.5rem;
  }

  .btn-main {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
  }
}

.section-subtitle {
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}

.img-separator {
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
}

.help-section {
  position: relative;
  background-image: url('bg2.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 2rem;
}

.help-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.help-section .container {
  position: relative;
  z-index: 2;
}

.help-section p,
.help-section h4,
.help-section h2 {
  color: white;
}
/* White box inside blue section */
.white-box {
  background-color: white;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Text color utilities */
.text-green {
  color: #1ea564;
}

.btn-light {
  background-color: white;
  color: #1ea564;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem; /* slightly larger */
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Helvetica Neue', sans-serif; /* match your brand font */
  border: 2px solid #1ea564;
}

.btn-light:hover {
  background-color: #f0f0f0;
  color: #178c52;
}

/* Base Colors */
:root {
  --main-green: #1ea564;
  --main-blue: #5b789f;
  --white: #ffffff;
}

/* Headings + Emphasis */
.text-green {
  color: var(--main-green);
}


/* Cards */
.card-title {
  font-weight: 700;
  text-transform: uppercase;
}

/* Utilities */
.section {
  padding: 60px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Image Styling */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.chapter-img {
  max-width: 75%; /* or try 60%, 50%, etc. depending on preference */
  height: auto;
  margin: 0 auto;
  display: block;
}
/* Center bullets horizontally */
.bullet-center {
  display: inline-block;
  text-align: left;
  padding-left: 1.2em;
  margin-left: auto;
  margin-right: auto;
  list-style-position: inside;
}

/* Ensure all <p> inside referral section are white */
.bg-green p {
  color: white !important;
}
/* Accordion Button Default (Collapsed) */
.accordion-button {
  background-color: #5b789f; /* your brand blue */
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  border: none;
}

/* Collapsed (Default) State: white bg + blue text */
.accordion-button.collapsed {
  background-color: white !important;
  color: #5b789f !important;
}

/* Expanded (Active) State: green bg + white text */
.accordion-button:not(.collapsed) {
  background-color: #1ea564 !important;
  color: white !important;
}

/* Remove Bootstrap's default shadow on focus */
.accordion-button:focus {
  box-shadow: none !important;
}
.text-blue {
  color: #5b789f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

