body {
    margin: 0;
    font-family: "Libre Baskerville", serif;
    color: #333333;
    background: #FFFFFF;
  }
  a{
    text-decoration: none;
  }
  h2{
    margin: 0
    ;
    position: relative;
    padding-bottom: 10px;
    color: #0fb78d;
    font-size: 32px;
    margin-bottom: 24px;
  }
  h3{
    margin: 0;
  }
  h2:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ec661f;
    bottom: 0;
}
  .header {
  width: 100%;
    padding: 10px 0px;
    background: #FF9800;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    position: fixed;
    top: 0;
    z-index: 1000;
  }
  .header .container{
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
  }
  .container{
    margin: 0 auto;
    max-width: 1170px;
    padding:0 15px ;
  }
  .logo {
    font-size: 24px;
    font-weight: 700;
    color: #15eeb8;
  }
  
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }
  
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}
  .header__actions {
   display: flex;
   gap: 10px;
   align-items: center;
   font-size: 18px;

   font-weight: 700;
  }
  .header__actions a{
    color: #15eeb8;
    font-size: 14px;
  }
  .burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .burger-menu span {
    width: 30px;
    height: 3px;
    background: #2E7D32;
  }
  
  .hero {
    display: flex;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
background-size: cover;
    align-items: center;
    padding: 100px 0px;

  }
  
  .hero__content h1 {
    font-size: 36px;
    color: #0cac84;
  }
  
  .hero__content p {
    font-size: 20px;
    margin: 20px 0;
   color: #15eeb8;
    font-weight: 700;
  }
  
  .btn {
    padding: 10px 20px;
    background: #27b18e;
    color: #FFFFFF;
    font-weight: 700;
    width: fit-content;
    text-decoration: none;
    border-radius: 1px;
  }
  .btn:hover {
    background: #175848;
  }
  .hero__image img {
    max-width: 100%;
    flex: 1;
  }
  
  .service-highlights {
    padding: 50px;
    text-align: center;
  }
  
  .highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .highlight {
    background: #4CAF50;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
  }
  
  .highlight .icon img {
    width: 50px;
  }
  
  #offerings {
    padding: 50px;
    text-align: center;
  }
  
  .offerings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .offering {
    background: #2196F3;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
  }
  
  .offering .icon img {
    width: 50px;
  }
  
  #education {
    padding: 50px;
    text-align: center;
    background: #F5F5F5;
  }
  
  .education__image img {
    max-width: 100%;
  }
  
  #about {
    padding: 50px;
    display: flex;
    gap: 20px;
  }
  
  .about__content .image img {
    max-width: 100%;
  }
  
  .stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
  }
  
  #news {
    padding: 50px;
    background: #E8F5E9;
  }
  
  .news__posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .post img {
    max-width: 100%;
  }
  
  #pricing {
    padding: 50px;
    text-align: center;
  }
  
  .pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .card {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 10px;
  }
  
  #testimonials {
    padding: 50px;
    text-align: center;
  }
  
  .testimonial {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
  }
  
  .testimonial .rating {
    color: #FFD700;
  }
  
  #why-choose-us {
    padding: 50px;
  }
  
  .tab__buttons {
    display: flex;
    gap: 10px;
  }
  
  .tab__link {
    background: #2E7D32;
    color: #FFFFFF;
    padding: 10px;
    border: none;
    cursor: pointer;
  }
  
  .tab__link.active {
    background: #1B5E20;
  }
  
  .tab__content {
    margin-top: 20px;
  }
  
  footer {
    background: #2E7D32;
    color: #FFFFFF;
    padding: 50px;
    text-align: center;
  }
  
  .footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .social__icons img {
    width: 24px;
    margin: 0 10px;
  }
  p{
    line-height: 150%;
  }
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: 0;
    background:  #15eeb8;
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .header {
      flex-wrap: wrap;
    }
    .nav-menu {
      display: none;
      width: 100%;
    }
    .nav-menu.active {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      text-align: center;
    }
    .burger-menu {
      display: flex;
    }
    .hero {
      flex-direction: column;
    }
    .highlights {
      grid-template-columns: 1fr;
    }
    .offerings {
      grid-template-columns: 1fr;
    }
    .about__content {
      flex-direction: column;
    }
    .news__posts {
      grid-template-columns: 1fr;
    }
    .pricing__cards {
      grid-template-columns: 1fr;
    }
  }
  .activities {
    display: flex
;
    justify-content: center;
    gap: 20px;
    margin-top: -40px;
    padding: 0px 20px;
    background: transparent;
    flex-wrap: wrap;
}
  
  .activity {
    flex: 1 1 280px;
    color: white;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: left;
    max-width: 340px;
    position: relative;
  }
  
  .activity .icon {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 30px;
  }
  
  .learn {
    background-color: #65b100;
  }
  .play {
    background-color: #f26522;
  }
  .meal {
    background-color: #42a7db;
  }
  
  .activity h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: bold;
  }
  .activity p {
    font-size: 14px;
    line-height: 1.6;
  }
  .offeringss
{
    padding: 50px;
    text-align: center;
}
.offerings

 {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.offering

 {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    color: #383737;
    padding: 20px;
    border-radius: 10px;
}
.offering i{
    text-align: start;
    font-size: 50px;
    margin-bottom: 10px;
}
.offering h3{
    text-align: start;
    font-size: 24px;
    margin-bottom: 20px;
}
.offeringss p{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.offering p{
    font-size: 16px;
    color: #333333;
 text-align: start;
}
.education{
   
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
background-size: cover;
    align-items: center;
    padding: 100px 0px;

}
.education .container{
    display: flex;
    flex-direction: column;
}
.education h2{
font-size: 40px;
color: #fff;
}
.education p{
color: #fff;
}
.about{
    padding: 80px 0;
}
.about__items{
    display: flex;
    gap: 60px;
}
.about__item{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.about__item img{
    width: 100%;
    height: 500px;
    flex: 1;
    object-fit: cover;
}
.about__item  ul{
    list-style: none;
    
}
.about__item  ul li{
   position: relative; 
   font-weight: 300;
   margin-bottom: 10px;
}
.about__item  ul li::before {
    position: absolute;
    left: -20px;
    top: -.2rem;
    color: #0fb78d;
    content: "✓";
    font-size: 20px;
  
}
.stats__items{
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    justify-content: center;
}
.stats__item{
    flex: 1;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 0px;
}
.stats__item span:first-child{
    font-size: 36px;
    font-weight: 700;
    font-family: "Libre Baskerville", serif;
    color: #0fb78d;
}
.stats__item span:last-child{

}
p{
line-height: 128%;
}
.news{
padding: 80px 0;
background-color: #f8f9fa;
}
.news__text{
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
}
.news__text p{
    text-align: center;
}
.news__posts{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.news__post{
    display: flex;
    gap: 20px;
    overflow: hidden;
    align-items: center;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    background: #ffffff;
    position: relative;
}
.news__post img{
   width: 170px;
   object-fit: cover;
   height: 250px;
}
.post__content{
    padding: 15px;
}
.post__content h3 a{
    margin-bottom: 10px;
    color: #0fb78d;
   font-size: 20px;
    transition: .3s all ease;
}
.post__content p{
   font-size: 15px;
   color: #333333;
   font-weight: 300;
}
.news__post:hover img{
transform: scale(1.1);
}
.pricing{
    padding: 80px 0;
    display: flex;
    gap: 30px;
    flex-direction: column;
    align-items: center;
}
.pricing__cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pricing__cards .card{
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: 0.5px solid #383737;
}
.pricing__cards .card h3{
    display: flex;
    flex-direction: column;
    gap: 15px;
   font-size:  28px ;
    color: #0fb78d;
    align-items: center;
}
.pricing__cards .card h3 i{
   font-size:  58px ;
    color: #15eeb8;
}
.pricing__cards .card ul{
    list-style: none;
}
.pricing__cards .card ul li{
    font-size: 15px;
    color: #686868;
    margin-bottom: 10px;
}
.pricing__cards .card .price{
    font-size: 32px;
    color: #333333;
}
.pricing__cards .card .btn{
    border-radius: 30px;
    background-color: #0fb78d;
}
.pricing__cards .card .btn:hover{
    border-radius: 30px;
    background-color: #07644d;
}
.pricing span{
    max-width: 900px;
    margin:0 auto;
    text-align: center;
    display: block;
}
.abiall{
    padding: 80px 0;
}
.abiall .container{
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.testimonials,
.why-choose-us{
    flex: 1;
    width: 44%;
}
.testimonials{
    overflow: hidden;
}
.testimonials span,
.why-choose-us span{
    font-size: 14px;
    color: #808080;
}
.tabs {
    margin-top: 40px;
}
.tab__link {
    background: #74a577;
    color: #FFFFFF;
    padding: 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
.tab__buttons {
    display: flex
;
    gap: 10px;
    flex-wrap: wrap;
}
.footer__column{
    display: flex;
    flex: 1;
    flex-direction: column;
}
.footer__column a{
    color: #d6d6d6;
    margin-bottom: 10px;
}
.footer__column p{
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 10px;
}
h4{
    margin: 0;
    font-size: 20px;
    margin-bottom: 15px;
}
.copy{
    margin-top: 40px;
}
footer

 {
    background: #0fb78d;
    font-size: 14px;
    color: #ffffff;
    padding: 70px 0;
}
.ab .about__items{
    margin-top: 50px;
}
.news__post p + a{
    color: #0cac84;
 font-size: 14px;
}
.item{
margin: 80px 0;

}
.item .container{
    background-color: #fff;
}

.item img{
    width: 100%;
    height: 450px;
    border-radius: 25px;
    object-fit: cover;
    margin-bottom: 20px;
}
.item ul li{
    margin-bottom: 10px;
}
.offering img{
    width: 100%;
    border-radius: 25px;

}
.contact{
    padding: 80px 0;
}
.contact__items{
    display: flex;
    gap: 50px;
    align-items: center;
}
.contact__item{
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 15px;
}
form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact__item-content {
    display: flex
;
    gap: 10px;
    align-items: center;
}
.contact__item-content  i{
    font-size: 38px;
    width: 80px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #5af7d0;
}
input{
    padding: 10px 20px;
    border-radius: 5px;
    border: 0;
    border-bottom:2px solid #0cac84;
}
form .btn{
    margin-bottom: 15px;
    border-radius: 15px;
    border:0;
    padding: 15px 40px;
    cursor: pointer;
}
.contact__item > p{
    font-size: 14px;
    line-height: 160%;
    color: #868383;
}
.faq__div {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
  }
  
  .faq h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .faq__question {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    padding: 15px;
    position: relative;
    transition: background 0.3s;
  }
  
  .faq__question:hover {
    background: #f9f9f9;
  }
  
  .faq__question h3 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
  }
  
  .faq__question i {
    margin-left: 10px;
    transition: transform 0.3s;
  }
  
  .faq__question.active i {
    transform: rotate(45deg);
  }
  
  .faq__answer {
    display: none;
    padding: 0 15px 15px 15px;
    font-size: 16px;
    color: #444;
  }
  
  .faq__question.active + .faq__answer {
    display: block;
  }
  .faq__items{
display: flex;
gap: 55px;
  }
  .faq__item{
    flex: 1;
  }
  .faq__item img{
    width: 100%;
    height: 400px;
    margin-bottom: 19px;
    object-fit: cover;
  }
  .faq{
    padding: 80px 0;
  }
  .pricing.gallery img{
width: 100%;
height: 500px;
display: block;
object-fit: cover;
  }
  .pricing.gallery .pricing__cards .card {
    padding: 0px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: 0px solid #383737;
}
.pricing.gallery .pricing__cards {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}
.pricing.gallery .card a {
    display: block;
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .offerings {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .offeringss {
        padding: 50px 0;
        text-align: center;
    }
    .stats__items {
        display: flex
    ;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .about__items {
        display: flex
    ;
        gap: 30px;
        flex-direction: column;
    }
    .news__posts {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }
    .news__post {
        display: flex
    ;
        gap: 20px;
        overflow: hidden;
        align-items: center;
        margin-bottom: 30px;
        -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
        background: #ffffff;
        position: relative;
        flex-direction: column;
    }
    .news__post img {
        width: 100%;
        object-fit: cover;
        height: 250px;
    }
    .pricing__cards {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .abiall .container {
        display: flex
    ;
        justify-content: space-between;
        gap: 30px;
        flex-direction: column;
    }
    .testimonials, .why-choose-us {
        flex: 1;
        width: 100%;
    }
    .footer__columns {
        display: grid
    ;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .header .container {
        display: flex
    ;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .nav-menu ul {
        list-style: none;
        display: flex
    ;
        gap: 20px;
        width: 100%;
        padding: 20px 0;
        left: 0;
        bottom: -230px;
        background-color: black;
        margin: 0;
        position: absolute;
    }
    .contact__items {
        display: flex
    ;
        gap: 50px;
        align-items: center;
        flex-direction: column;
    }
    .faq__items {
        display: flex
    ;
        gap: 55px;
        flex-direction: column;
    }
    .pricing.gallery .pricing__cards {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }
}
.cook__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    flex-wrap: wrap;
  }
  
  .cook__banner p {
    margin: 0;
    flex: 1;
  }
  
  .cook__banner button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
  }