.site-header {
  background: #415a77;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: larger;
  font-family: Arial, Helvetica, sans-serif;
}

.main-nav a:hover {
  color: slategray;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between logo and contact */
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.header-contact-details {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

/* Header left group */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.header-contact-title {
  font-weight: bold;
  font-size: 1rem;
}

.header-contact-details {
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.BusinessName {
  font-family:Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-size: xx-large;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 900px) {
  .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    background: #415a77;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .main-nav li {
    text-align: center;
    padding: 0.75rem 0;
  }

  .main-nav.show {
    display: block;
  }

  .header-contact {
    text-align: right;
  }

  .BusinessName {
    font-size: large;
  }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

.heading-section {
  background-color: #f7f7f7;
  padding-top: 40px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: larger;
}

.image-text-section {
  padding: 4rem 2rem;
  background-color: #f7f7f7;
}

/* ABOUT PAGE — text wrapping with image on the right */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.content-wrapper img {
  float: right;
  width: 380px;          /* adjust as needed */
  max-width: 45%;        /* responsive */
  margin: 0 0 20px 25px; /* spacing on the left now */
  border-radius: 6px;
}

/* Clear float at the end */
.content-wrapper::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile: stack image above text */
@media (max-width: 700px) {
  .content-wrapper img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 100%;
  }
}

.two-column-info {
  max-width: 1200px;
  margin: 3rem auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  font-family: Arial, Helvetica, sans-serif;
  clear: both;          /* ✅ stops the image float affecting alignment */
  text-align: center;   /* ✅ centers text in both columns */
}

.info-box {
  flex: 1;
}

.info-box b {
  font-size: 1.4rem;
  color: #063f36;
  display: block;
  margin-bottom: 0.5rem;
}

.info-box p {
  line-height: 1.6;
  color: #333;
}

/* Mobile: stack vertically */
@media (max-width: 800px) {
  .two-column-info {
    flex-direction: column;
  }
}

.image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.textright {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #063f36;
  text-align: center;
}

.text-column {
  font-size: 0.95rem;   /* slightly smaller text */
  line-height: 1.55;
}

.text-column h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #063f36;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #063f36;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #052f29;
}

/* Responsive */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
  }

  .text-column {
    text-align: center;
  }
}

/* COMMUNITY SUPPORT SECTION */
.community-support-section {
  background-color: #f7f7f7;
  padding: 3rem 2rem;
  margin-top: 3rem;
  clear: both;
}

/* Main centered subtitle */
.section-subtitle {
  text-align: center;
  font-size: 2rem;
  color: #063f36;
  margin-bottom: 2.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Two-column layout */
.community-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* Left column text matches your About section */
.community-text {
  flex: 1;
}

.community-subtitle {
  font-size: 1.6rem;
  color: #063f36;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.community-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

/* Right column image */
.community-image {
  flex: 1;
}

.community-image img {
  width: 40%;          /* smaller image */
  max-width: 350px;    /* caps the size nicely */
  border-radius: 6px;
  object-fit: cover;
  display: block;
  margin: 0 auto;      /* keeps it centered in its column */
}

.community-cards {
  max-width: 1200px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* slightly tighter spacing between cards */
}

.community-card {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* text and image closer together */
  padding: 1rem 0;
}

.card-text {
  flex: 1;
}

.card-text h3 {
  font-size: 1.8rem; /* bigger heading */
  color: #063f36;
  margin-bottom: 0.5rem;
}

.card-text p {
  font-size: 1.15rem; /* bigger body text */
  line-height: 1.6;
  color: #333;
}

.card-image {
  flex: 0 0 240px; /* slightly larger image container */
}

.card-image img {
  width: 100%;
  height: 170px;       /* consistent height, slightly larger */
  object-fit: contain;
  border-radius: 6px;
  background: #f7f7f7;
  padding: 8px;
}

/* Mobile */
@media (max-width: 900px) {
  .community-card {
    flex-direction: column;
    text-align: center;
  }

  .card-image {
    flex: none;
    width: 70%;
  }

  .card-image img {
    height: auto;
  }
}

/* Remove extra spacing between sections */
.two-column-info,
.community-support-section,
.community-cards {
  margin-top: 0;
  padding-top: 0;
}

.community-support-section {
  margin-bottom: 0;
  padding-bottom: 2rem; /* keep a little breathing room */
}

/* Remove any leftover gap caused by float clearing */
.content-wrapper::after {
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-footer {
  background-color: #778da9;
  padding: 1.5rem 1rem;
  color: #ffffff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo img {
  max-width: 160px;
}

.footer-image,
.footer-image img {
  height: 150px;      /* match your header logo height or adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-info p,
.footer-hours p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-info span {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-hours strong {
  font-size: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-image {
    margin: 0 auto;   /* ensures perfect centering */
  }

  .footer-logo img {
    margin: 0 auto;   /* centers the main logo too */
  }
}

.footer-copyright{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1b263b;
    color: #ffffff;
    padding: 5px;
    font-size: larger;
}