/* === RESET STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

/* === HEADER (index + assessments pages) === */
.header {
  background: linear-gradient(to right, #94d2a0, #e7cfcf);
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #10a77f;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.header-content img {
  width: 100px;
  height: auto;
}

.header-text h1 {
  font-size: 2rem;
}

.header-text p {
  font-size: 1rem;
  color: #333;
}

/* === NAVIGATION === */
.navbar {
  margin-top: 15px;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.navbar a {
  text-decoration: none;
  color: #10a77f;
  font-weight: bold;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.navbar a:hover {
  background-color: #10a77f;
  color: white;
  border-radius: 4px;
}

/* === INTRO SECTION === */
.intro {
  background-color: #e6f5f0;
  padding: 40px 20px;
  text-align: center;
}

.intro h2 {
  color: #015c4b;
  font-size: 28px;
  margin-bottom: 10px;
}

.intro h3, .intro h4 {
  margin-top: 20px;
  color: #003d2e;
}

.intro p, .intro ul {
  max-width: 800px;
  margin: 0 auto 10px;
  text-align: left;
}

/* === WHAT WE OFFER SECTION === */
.offer {
  background-color: #edf7ee;
  padding: 40px 20px;
  text-align: center;
}

.offer h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
}

.offer-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}

.offer-content img {
  max-width: 300px;
  border-radius: 10px;
}

.offer-content ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  list-style: disc inside;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background-color: #ffffff;
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #006959;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  text-align: left;
}

.testimonial img {
  max-width: 200px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* === QUOTE SECTION === */
.quote {
  background-color: #fbe3e3;
  padding: 40px 20px;
  text-align: center;
}

.quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

.quote em, .quote cite {
  display: block;
  margin-top: 10px;
  color: #666;
}

/* === CONTACT SECTION === */
.contact {
  background-color: #92d9aa;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

.contact p {
  margin: 10px 0;
}

/* === FOOTER === */
footer {
  background: linear-gradient(to right, #b2a86f, #f7b87a);
  padding: 30px 20px;
  font-size: 14px;
  color: black;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1;
  text-align: center;
}

.footer-left h2,
.footer-right h2 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* === INFORMATION PAGE ADDITIONS === */

.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #94d2a0, #e7cfcf);
  padding: 20px 0;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  width: 100px;
  height: auto;
}

.site-title h1 {
  font-size: 2rem;
}

.nav-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
}

.nav-menu li {
  margin: 0 12px;
}

.nav-menu a {
  text-decoration: none;
  color: #10a77f;
  font-weight: bold;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: #10a77f;
  color: white;
  border-radius: 4px;
}

/* Green intro section */
.section.green-bg {
  background-color: #e6f5e0;
  padding: 40px 20px;
  text-align: center;
}

/* Pink quote box */
.pink-quote {
  background-color: #fbe9eb;
}

/* Info grid */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: #fefefe;
}

.info-box {
  background: #f9f9f9;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.info-box h3 {
  font-size: 1.4rem;
  color: #002b00;
  margin-bottom: 15px;
}

.info-box ul {
  padding-left: 20px;
  margin-top: 10px;
  line-height: 1.6;
}

.info-box li {
  margin-bottom: 6px;
}

/* Center image section */
.center-image {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
}

.center-image img {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Footer gallery images */
.footer-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-gallery img {
  max-width: 120px;
  height: auto;
}

/* Footer contact info */
.footer-info {
  text-align: center;
  padding: 30px 20px;
}

.highlight {
  background: #d0f0c0;
  padding: 2px 6px;
  border-radius: 4px;
}
/* === CONTACT PAGE (CHALKBOARD SECTION) CENTERED FIXED === */
.chalkboard-section {
  background-color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.chalkboard-section h1 {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #003300;
  display: block;
  width: 100%;
}

/* Individual contact containers */
.contact-person {
  margin: 10px 0;
  max-width: 600px;
}

.contact-person p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-person a {
  color: #006699;
  text-decoration: underline;
}

/* === QUOTE SECTION (REUSED) === */
.quote-section {
  background-color: #fbe3e3;
  padding: 40px 20px;
  text-align: center;
}

.quote-box {
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  font-size: 1.2rem;
  color: #333;
}

/* === HELP SECTION === */
.help-section {
  background-color: #92d9aa;
  padding: 30px 20px;
  text-align: center;
}

.help-box {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* === STAFF IMAGES === */
.staff-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.staff-images img {
  max-width: 120px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* === GLOBAL CONTAINER FIX FOR CONSISTENT CENTERING === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === BLOG PAGE FIXES === */
.blog-post {
  background-color: #fff;
  padding: 30px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.blog-post h3 {
  font-size: 1.5rem;
  color: #005f4b;
  margin: 10px 0;
}

.blog-post ul {
  margin: 10px 0 20px 20px;
  list-style-type: disc;
}

.blog-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 20px;
}

.fee-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
