@charset "UTF-8";
/* CSS Document */

:root {
      /* 60% - Primary (Neutral base) */
      --primary-bg: #FFFFFF;
      --primary-light: #F8F9FA;
      
      /* 30% - Secondary (Client's soft pastels) */
      --secondary-blue: #A8D5E2;
      --secondary-green: #C8E6A7;
      --secondary-lavender: #D8B9FF;
      
      /* 10% - Accent (Vibrant pops) */
      --accent-coral: #FF6B9D;
      --accent-peach: #FFD1DC;
      --accent-yellow: #FFF9C4;
      
      /* Text */
      --text-dark: #2B2F3A;
      --text-medium: #4A5568;
      --text-light: #718096;
      
      /* Shadows */
      --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

	html {
 	  scroll-behavior: smooth;
	}

	svg {
	  display: block;
	}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Quicksand', 'Nunito', sans-serif;
      line-height: 1.7;
      color: var(--text-dark);
      background-color: var(--primary-bg);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Baloo 2', 'Quicksand', sans-serif;
      font-weight: 600;
      line-height: 1.2;
      color: var(--text-dark);
    }

    /* Header - White with accent */
    header {
      background: var(--primary-bg);
      box-shadow: var(--shadow-soft);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid var(--secondary-lavender);
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.25rem 2rem;
      gap: 1.5rem;
      position: relative;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 2.75rem;
      height: 2.75rem;
      background: rgba(200, 230, 167, 0.25);
      border: 2px solid var(--secondary-lavender);
      border-radius: 50%;
      cursor: pointer;
      gap: 0.4rem;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .nav-toggle span {
      display: block;
      width: 55%;
      height: 3px;
      background: var(--text-medium);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle:hover {
      background: rgba(200, 230, 167, 0.45);
      border-color: var(--accent-coral);
      transform: translateY(-1px);
    }

    .nav-toggle:focus-visible {
      outline: 3px solid rgba(255, 107, 157, 0.4);
      outline-offset: 2px;
    }

    body.nav-open {
      overflow: hidden;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      font-family: 'Baloo 2', 'Quicksand', sans-serif;
      background: linear-gradient(135deg, var(--accent-coral), var(--secondary-lavender));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
      line-height: 1.3;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    nav a {
      color: var(--text-medium);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }

    nav a:not(.logo):hover {
      color: var(--accent-coral);
    }

    nav a:not(.logo)::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--accent-coral);
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    nav a:not(.logo):hover::after {
      width: 100%;
    }

    /* Hero Section - White with pastel gradient accent */
    .hero-section {
	  background-image: url("../images/childrenwalking.avif");
	  background-size: cover;
	  background-position: center bottom;
	  background-repeat: no-repeat;
      padding: 7rem 2rem 9rem;
      min-height: 150vh;
      position: relative;
      overflow: hidden;
	  margin-bottom: -200px;
    }

    .hero-wave {
      position: absolute;
      bottom: 100px;
      left: 0;
      width: 100%;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-wave svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0) 70%);
      z-index: 0;
    }

    .hero-content {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 3;
    }

	.trust-badges {
 	  display: flex;
 	  gap: 1.5rem;
	  flex-wrap: wrap;
  	  margin-bottom: 1.5rem;
  	  font-size: 0.9rem;
  	  font-weight: 600;
  	  color: var(--text-medium);
	}

	.trust-badges span {
  	  background: white;
  	  padding: 0.5rem 1rem;
  	  border-radius: 20px;
  	  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	}

    .hero-text h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
      line-height: 1.1;
    }

    .hero-text p {
      font-size: 1.25rem;
      color: var(--text-medium);
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .hero-cta {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
      color: white;
      padding: 1.15rem 3rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    }

    .hero-image img {
      width: 100%;
      max-width: 550px;
      border-radius: 30px;
      box-shadow: var(--shadow-medium);
      border: 6px solid white;
      transition: transform 0.3s ease;
    }

    .hero-image img:hover {
      transform: scale(1.02);
    }


    /* About Section - Light pastel background */
    .about-section {
      padding: 6rem 2rem;
      background: var(--secondary-green);
      position: relative;
	  margin-bottom: -1px;
    }

    .about-main {
      max-width: 900px;
      margin: 0 auto 4rem;
      text-align: center;
      position: relative;
    }

    .about-main h2 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .about-main h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent-coral);
      margin: 1rem auto 0;
      border-radius: 2px;
    }

    .about-main p {
      font-size: 1.2rem;
      color: var(--text-dark);
      line-height: 1.8;
    }

    .about-body {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-text-container {
      background: var(--primary-bg);
      padding: 3rem;
      border-radius: 25px;
      box-shadow: var(--shadow-soft);
      border-left: 5px solid var(--accent-coral);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-text-container:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .about-text-container p {
      font-size: 1.05rem;
      color: var(--text-medium);
      line-height: 1.8;
    }

    .about-image-container img {
      width: 100%;
      border-radius: 25px;
      box-shadow: var(--shadow-medium);
      border: 6px solid white;
      transition: transform 0.3s ease;
    }

    .about-image-container img:hover {
      transform: scale(1.02);
    }

    /* Programs Section - White background with colorful cards */
    .programs-section {
      background: var(--primary-bg);
      padding: 6rem 2rem;
      position: relative;
	  margin-top: -1px;
    }

    .programs-main h2 {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .programs-main h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent-coral);
      margin: 1rem auto 2.5rem;
      border-radius: 2px;
    }

    .programs-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .program-card {
      background: var(--primary-bg);
      border-radius: 25px;
      padding: 2.5rem;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-soft);
      border: 2px solid var(--primary-light);
      position: relative;
      overflow: hidden;
    }

    .program-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      transition: transform 0.3s ease;
    }

    .program-card:nth-child(1)::before {
      background: linear-gradient(90deg, var(--accent-coral), var(--accent-peach));
    }

    .program-card:nth-child(2)::before {
      background: linear-gradient(90deg, var(--secondary-blue), var(--secondary-green));
    }

    .program-card:nth-child(3)::before {
      background: linear-gradient(90deg, var(--secondary-lavender), var(--accent-coral));
    }

    .program-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-medium);
      border-color: var(--secondary-lavender);
    }

    .program-card a {
      text-decoration: none;
      color: inherit;
    }

    .program-content h3 {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .program-content p {
      font-size: 1.05rem;
      color: var(--text-medium);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .program-content .cta {
      color: var(--accent-coral);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: gap 0.3s ease;
      font-size: 1.05rem;
    }

    .program-card:hover .cta {
      gap: 1rem;
    }

    /* Why Choose Section - Pastel background */
    .why-choose-us {
      background: var(--secondary-blue);
      padding: 6rem 2rem;
      position: relative;
	  margin-top: -10px;
	  margin-bottom: -1px;
    }

    .why-container {
      max-width: 900px;
      margin: 0 auto 4rem;
      text-align: center;
    }

    .why-container h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .why-container h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: var(--accent-coral);
      margin: 1rem auto 0;
      border-radius: 2px;
    }

    .why-container p.intro {
      font-size: 1.2rem;
      color: var(--text-dark);
      line-height: 1.8;
      margin-top: 1.5rem;
    }

    .why-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .why-item {
      background: var(--primary-bg);
      padding: 2.5rem 1.5rem;
      border-radius: 25px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-soft);
      border: 2px solid white;
    }

    .why-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-medium);
      border-color: var(--accent-coral);
    }

    .why-item img {
      width: 90px;
      height: 90px;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
      transition: transform 0.3s ease;
    }

    .why-item:hover img {
      transform: scale(1.1) rotate(5deg);
    }

    .why-item h3 {
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
      color: var(--text-dark);
    }

    .why-item p {
      font-size: 0.95rem;
      color: var(--text-medium);
      line-height: 1.6;
    }

    /* Contact Section - White with accent box */
    .contact {
      background: var(--primary-bg);
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
	  margin-top: -1px;
    }

    .contact::before {
      content: "";
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--secondary-lavender) 0%, transparent 70%);
      opacity: 0.2;
      border-radius: 50%;
    }

    .contact-main {
      max-width: 700px;
      margin: 0 auto;
      background: var(--accent-yellow);
      padding: 3rem;
      border-radius: 30px;
      box-shadow: var(--shadow-medium);
      border: 5px solid white;
      position: relative;
      z-index: 1;
    }

    .contact-main h2 {
      text-align: center;
      font-size: 2.75rem;
      margin-bottom: 2.5rem;
      color: var(--text-dark);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    input, textarea {
      width: 100%;
      padding: 1.1rem 1.5rem;
      border: 2px solid white;
      border-radius: 15px;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.3s ease;
      background: var(--primary-bg);
      color: var(--text-dark);
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--text-light);
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--accent-coral);
      box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.2);
      transform: translateY(-2px);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    button[type="submit"] {
      width: 100%;
      padding: 1.35rem;
      background: linear-gradient(135deg, var(--accent-coral), var(--accent-peach));
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1.15rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    }

    button[type="submit"]:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    }

    /* Footer - Lavender with white cards */
    footer {
      background: linear-gradient(135deg, var(--secondary-lavender) 0%, #c9a8f5 100%);
      color: var(--text-dark);
      padding: 5rem 2rem 1.5rem;
    }

    .location-container {
      max-width: 1280px;
      margin: 0 auto 3.5rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .location {
      background: var(--primary-bg);
      padding: 1.75rem 2rem;
      border-radius: 20px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .location::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-coral), var(--secondary-blue));
      transition: height 0.3s ease;
    }

    .location:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border-color: white;
    }

    .location:hover::before {
      height: 100%;
      opacity: 0.06;
    }

    .location h2 {
      color: var(--accent-coral);
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .location p, .location address {
      color: var(--text-medium);
      font-style: normal;
      line-height: 1.6;
      font-weight: 500;
      letter-spacing: 0.2px;
      font-size: 0.95rem;
    }

    .location address {
      display: block;
      margin-bottom: 1.25rem;
      color: var(--text-dark);
      font-weight: 600;
    }

    .location p {
      color: var(--text-medium);
    }

    .footer-contact {
      max-width: 1280px;
      margin: 0 auto 3rem;
      padding-top: 2.5rem;
      border-top: 2px solid rgba(255, 255, 255, 0.3);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      text-align: center;
    }

    .footer-contact > div {
      background: var(--primary-bg);
      padding: 1.75rem 1.9rem;
      border-radius: 18px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .footer-contact > div::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      transition: height 0.3s ease;
    }

    .footer-contact .call::before {
      background: linear-gradient(90deg, var(--accent-coral), var(--accent-peach));
    }

    .footer-contact .mail::before {
      background: linear-gradient(90deg, var(--secondary-blue), var(--secondary-green));
    }

    .footer-contact .social::before {
      background: linear-gradient(90deg, var(--secondary-lavender), var(--accent-coral));
    }

    .footer-contact > div:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      border-color: white;
    }

    .footer-contact > div:hover::before {
      height: 100%;
      opacity: 0.06;
    }

    .footer-contact h2 {
      color: var(--text-dark);
      font-size: 0.9rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .footer-contact p {
      color: var(--accent-coral);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .footer-contact .call p {
      font-size: 1.35rem;
      letter-spacing: 0.3px;
    }

    .footer-contact .mail p {
      font-size: 1.05rem;
      letter-spacing: 0.15px;
      overflow-wrap: anywhere;
    }

    .footer-contact .mail a {
      position: relative;
      z-index: 1;
    }

    .footer-contact .social-link {
      display: inline-flex;
	  position: relative;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: var(--accent-coral);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.2px;
      text-decoration: none;
      transition: color 0.3s ease;
	  z-index: 1;
    }

    .footer-contact .social-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .footer-contact .social-link:hover {
      color: var(--secondary-blue);
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding-top: 2rem;
      text-align: center;
      border-top: 2px solid rgba(255, 255, 255, 0.3);
    }

    .footer-bottom p {
      color: var(--text-dark);
      font-size: 0.9rem;
      opacity: 0.8;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .hero-section {
        padding: 6rem 2rem 15rem;
        min-height: auto;
      }

      .hero-wave {
        bottom: 100px;
      }

      .hero-image img {
        max-width: 500px;
      }
    }

    @media (max-width: 1024px) {
		
	  .hero-section {
		padding: 6rem 2rem 20rem;
	  }
		
      .hero-content,
      .about-body {
        grid-template-columns: 1fr;
      }

      .hero-content {
        gap: 3rem;
        text-align: center;
        justify-items: center;
      }

      .hero-text {
        max-width: 600px;
      }

      .hero-text h1 {
        font-size: 3rem;
      }

      .hero-text p {
        font-size: 1.1rem;
      }

      .hero-image {
        order: -1;
      }

      .hero-image img {
        max-width: 420px;
      }
		
	  .hero-wave {
		bottom: 150px;
	  }

      .about-text-container,
      .contact-main {
        padding: 2.5rem;
      }

      .programs-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      header {
        border-bottom-width: 2px;
      }

      nav {
        padding: 1.1rem 1.5rem;
      }

      .nav-toggle {
        display: flex;
      }

      nav ul {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1.5rem;
        background: var(--primary-bg);
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.1rem;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow-medium);
        min-width: 220px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1001;
      }

      nav ul li {
        width: 100%;
      }

      nav ul li a {
        width: 100%;
        display: block;
        text-align: center;
      }

      body.nav-open nav ul {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .hero-section {
        padding: 5.5rem 1.75rem 15.5rem;
        margin-bottom: -150px;
      }

      .about-section,
      .programs-section,
      .why-choose-us,
      .contact,
      footer {
        padding: 5rem 1.75rem;
      }
		
	  .why-choose-us {
		margin-top: -1px;
	  }
    }

    @media (max-width: 768px) {
      .hero-section {
        margin-bottom: -120px;
      }

      .hero-text h1 {
        font-size: 2.5rem;
      }

      .hero-text p {
        font-size: 1.05rem;
      }

      .hero-cta {
        padding: 1rem 2.4rem;
        font-size: 1rem;
      }
		
	  .programs-section {
		margin-bottom: -50px;	
	  }

      .programs-grid,
      .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .trust-badges {
        justify-content: center;
      }

      .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .footer-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .about-main h2,
      .programs-main h2,
      .why-container h2 {
        font-size: 2.5rem;
      }

      footer {
        padding-top: 4.5rem;
      }

      .hero-image img {
        max-width: 360px;
      }

      .hero-wave {
        bottom: 65px;
      }
    }

    @media (max-width: 600px) {
      nav {
        padding: 1rem 1.25rem;
      }

      nav ul {
        right: 1.25rem;
        left: 1.25rem;
        min-width: unset;
      }

      nav ul li a {
        font-size: 0.95rem;
        padding: 0.35rem 0;
      }

      .hero-section,
      .about-section,
      .programs-section,
      .why-choose-us,
      .contact {
        padding: 4rem 1.5rem;
      }

      .hero-section {
        padding-bottom: 5rem;
        margin-bottom: -100px;
      }

      .hero-text h1 {
        font-size: 2.2rem;
      }

      .hero-text p {
        font-size: 1rem;
      }

      .about-text-container,
      .contact-main {
        padding: 2.1rem;
      }

      .program-card,
      .why-item {
        padding: 2rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .hero-section {
        padding: 3.5rem 1.25rem 4.75rem;
        margin-bottom: -80px;
      }

      .hero-wave {
        bottom: 10px;
      }

      .hero-text h1 {
        font-size: 1.95rem;
      }
		
	  .hero-text p {
		color: white;
	  }

      .hero-cta {
        width: 100%;
        text-align: center;
      }

      .about-main p,
      .program-content p,
      .why-item p {
        font-size: 0.95rem;
      }

      .program-content h3,
      .why-item h3 {
        font-size: 1.25rem;
      }

      .contact-main,
      .about-text-container {
        padding: 1.85rem;
      }

      .location,
      .footer-contact > div {
        padding: 1.5rem;
      }

      .footer-contact h2 {
        font-size: 0.85rem;
      }

      .footer-contact p {
        font-size: 1rem;
      }
    }
