:root {
  --primary-color: #006A4E;
  --accent-color: #F5A623;
  --text-light: #FFFFFF;
  --text-dark: #000000;
  --bg-light: #F5F7FA;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h2 {
  color:  #006A4E;
}



.jumbotron-header {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.jumbotron-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jumbotron-header.title-badge {
  font-size: 1.2rem;
  padding: 0.7rem 2rem;
  margin-bottom: 1rem;
  display: block;
  margin: 0 auto 1rem;
}

.jumbotron-header.slogan {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
}


/* ============================
   Footer
   ============================ */

   footer {
    background: #f8f9fa;             
    padding: 1rem;                   
    margin-top: 2rem;                
    border-top: 1px solid #dee2e6;    
    text-align: center;              
    font-size: 1rem;             
    color: #6c757d;                  
    line-height: 1.6;                 
}
footer p {
    margin: 0.7rem 0;                 /* 9 - Minimal paragraph spacing */
}
footer strong, footer small, footer span {
    display: block;                   /* 10 - Ensure each takes its own line */
}
footer strong {
    color: #343a40;                   /* 11 - Darker color for name */
    font-size: 1rem;                  /* 12 - Slightly larger name */
    margin-bottom: 0.1rem;            /* 13 */
}
footer small {
    font-size: 0.8rem;                /* 14 - Smaller tagline */
    margin: 0.1rem 0 0.2rem;          /* 15 */
}
footer a {
    color: #007700;                   /* 16 - Link color */
    text-decoration: none;            /* 17 */
    padding: 0 0.3em;                 /* 18 - Add space around links */
}
footer a:hover {
    text-decoration: underline;       /* 19 */
}

/* ============================
   End  Footer
   ============================ */