
  body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, 'Helvetica Light', Arial, sans-serif;
    font-weight: 300;
    background-color: #EFEEE7;
    color: #282828;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Header */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3B424C;
    color: #EFEEE7;
    z-index: 999;
    transition: top 0.3s ease;
  }
  .main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .logo {
    height: 75px;
  }
  .tagline {
    font-size: 1.2rem;
    font-weight: bold; /* Makes the text bold */
  }

  .header-right a {
    margin-left: 2rem;
    text-decoration: none;
    color: #EFEEE7;
    font-weight: 300;
  }
  .header-right a:hover {
    text-decoration: underline;
  }

  .spacer {
    height: 100px;
  }
  section {
    padding: 3rem 0;
  }

  /* Two-column layout */
  .section-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;       /* Adds horizontal spacing */
    padding: 0;      /* Removes vertical spacing */
    margin: 0;
  }

  .column {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem; /* Keeps inner content nicely spaced */
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3B424C;
  }
  .column p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  img {
    max-width: 100%;
    border-radius: 10px;
  }

  /* Mission */
  .mission {
    background-color: #EFEEE7; /* base background for entire section */
    padding: 3rem 0;
    padding-top: 0; 
    padding-bottom: 0; /* Removes bottom gap */
  }

  .mission-title {
    background-color: #DDE4EB; /* only this column gets the distinct color */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .mission-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3B424C;
    text-align: center;
    margin: 0;
    padding: 2rem;
  }

  .mission-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 1rem;
    color: #282828;
  }

  /* About with white background */
  .about-me {
    background-color: #FFFFFF;
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .about-me .section-flex {
    display: flex;
    align-items: center; /* This centers the columns vertically */
  }


  .about-me .column:first-child {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    padding-left: 2rem; 
  }

  .about-me .column {
    padding: 1rem; /* reduce internal column spacing */
  }

  .about-me .column p {
    margin-bottom: 1rem; /* prevent excess spacing between paragraphs */
    max-width: 700px;     /* optional: constrain line length for readability */
  }


  /* Program Section */
  .program {
    background-color: #F0EFE9;
  }
  .program h2 {
    text-align: center;
    font-size: 2rem;
    color: #3B424C;
    margin-bottom: 2rem;
  }
  .program-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
  }
  .program-columns .column {
    background-color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
  }
  .program-columns h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #282828;
  }
  .program-columns ul {
    padding-left: 1.2rem;
    margin: 0;
  }
  .program-columns li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  /* Footer */
 footer {
  background-color: #3B424C;
  color: #EFEEE7;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}
.footer-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 2;
  justify-content: flex-start; /* aligns content toward the left */
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-info a {
  color: #EFEEE7;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-icon {
  height: 1rem;   /* Matches font size (1rem = ~16px) */
  width: auto;
  flex-shrink: 0; /* Prevent icon from shrinking */
  vertical-align: middle;
}

.logo-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-contact .logo {
  height: 75px;
  width: auto;
}

.contact-info p {
  margin: 0.3rem 0;
  text-align: left;
}

.contact-info a {
  color: #EFEEE7;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-col {
  text-align: center;
  flex: 1;
}

.footer-instagram {
  height: 24px;
  width: auto;
  margin-top: 0.5rem;
  transition: transform 0.2s ease;
  border-radius: 0;
}

.footer-instagram:hover {
  transform: scale(1.2);
}


/* mobile friendly */
@media (max-width: 768px) {
  .main-header-inner {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .header-left {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .header-right a {
    margin: 0 1rem;
    display: inline-block;
    padding: 0.5rem 0;
  }

  .section-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .program-columns {
    grid-template-columns: 1fr;
  }

  .logo-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-col {
    margin-top: 1rem;
  }

  .footer-instagram {
    margin: 0.5rem auto 0;
  }
}
@media (max-width: 768px) {
  .section-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .program-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .program-columns .column {
    width: 100%;
  }

  .about-me .section-flex {
    flex-direction: column;
  }

  .logo-contact {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


