body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333333;
  background: #F5F5F0;
}
.hero.pri h1{
  text-align: center;
}
h2 {
  margin: 0;
  font-size: 40px;
  margin-bottom: 30px;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: #8ca779;
  color: #FFFFFF;
  position: fixed;
  width: 95%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  text-decoration: none;
  color: #181717;
  font-weight: 700;
}

.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: 18px;
}

.nav-menu a:hover {
  color: #052c0c;
}

.social-icons img {
  width: 24px;
  margin-left: 10px;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-menu span {
  width: 30px;
  height: 3px;
  background: #FFFFFF;
}

.hero {
  display: flex;
  height: 100vh;
  background-repeat: no-repeat;
  background-color: #323232;
  align-items: center;
  padding: 100px 50px;
  background-size: cover;
  background-position: center;
  background-blend-mode: exclusion;
  justify-content: center;
}

.hero__content {
  flex: 1;
  max-width: 700px;
}

.hero__content h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  color: #b7faa3;
}

.hero__content p {
  font-size: 18px;
  margin: 20px 0;
  color: #7beb93;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  width: fit-content;
  padding: 10px 20px;
  margin-right: 10px;
  display: block;
  text-decoration: none;
  border-radius: 5px;
}

.btn.primary {
  background: #adfaa3;
  color: #FFFFFF;
}

.btn.secondary {
  border: 2px solid #a3faa7;
  color: #a3faa7;
}

.hero__image img {
  max-width: 100%;
  flex: 1;
}



#how-it-works {
  padding: 50px;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.step {
  text-align: center;
}

.step .number {
  background: #A3BFFA;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 auto;
}

.step .icon img {
  width: 50px;
  margin: 10px 0;
}

#about {
  padding: 50px;
  display: flex;
  gap: 20px;
}

.about__content {
  display: flex;
  gap: 20px;
}

.about__content .image img {
  max-width: 100%;
}

#our-services {
  padding: 50px;
}

.tab__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  float: left;
}

.tab__link {
  background: #A3BFFA;
  color: #FFFFFF;
  padding: 10px;
  border: none;
  cursor: pointer;
  text-align: left;
}

.tab__link.active {
  background: #1C2526;
}

.tab__content {
  margin-left: 220px;
  display: flex;
  gap: 20px;
}

.tab__content .image img {
  max-width: 100%;
}

#testimonials {
  padding: 50px;
  background: #A3BFFA;
  color: #FFFFFF;
  text-align: center;
}

.testimonial {
  background: #FFFFFF;
  color: #333333;
  padding: 20px;
  border-radius: 10px;
}

.testimonial img {
  width: 100px;
  border-radius: 50%;
}

.testimonial .rating {
  color: #FFD700;
}

#pricing {
  padding: 50px;
  background: #F5F5F0;
  text-align: center;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card

 {
    background: #FFFFFF;
    padding: 20px;
    display: flex
;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
}

.card ul {
  list-style: none;
  padding: 0;
}

#contact {
  padding: 100px 0 80px; 
  background-repeat: no-repeat;
  display: flex;
  background-size: cover;
  gap: 20px;
  background-blend-mode: color-burn;
  background-attachment: fixed;
  background-position: center;
  background-color: #7bc785;

}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 700px;
}
.contact__form form {
  display: flex
;
  flex-direction: column;
}
.contact__form .btn{
  border: 0;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  background-color: #589167;
}
.contact__form h3{
  font-size: 32px;
  color: #fff;
}
.contact__form input,
.contact__form textarea {
  width: auto;
  padding: 20px 10px;
  margin-bottom: 10px;
  border: 1px solid #A3BFFA;
  border-radius: 5px;
}

.contact__image img {
  max-width: 100%;
  flex: 1;
}

#blog {
  padding: 50px;
  text-align: center;
}

.blog__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.post img {
  max-width: 100%;
}

footer {
  background: #1C2526;
  color: #FFFFFF;
  padding: 50px;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #38853e;
  color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 50%;
  display: none;
  border: 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.active {
    display: block;
    bottom: -230px;
    left: 0;
    padding: 20px 0;
    position: absolute;
    background-color: #000000;
}

  .nav-menu ul {
    flex-direction: column;
    text-align: center;
  }

  .burger-menu {
    display: flex;
  }

  .hero {
    flex-direction: column;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .about__content {
    flex-direction: column;
  }

  .tab__buttons {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab__content {
    margin-left: 0;
    flex-direction: column;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
  }

  .contact__form,
  .contact__image {
    flex: none;
  }

  .blog__posts {
    grid-template-columns: 1fr;
  }
}

.social-icons {
  display: flex;
  gap: 15px;

}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #333;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: #ff6600;
  transform: scale(1.1);
}

.highlights {
  width: 80%;
  margin-top: -100px;
  background: #589167;
}

.highlights {
  display: flex;
}

.highlight {
  display: flex;
  flex: 1;
  gap: 15px;
  padding: 30px 15px;
}

.highlight .icon {
  font-size: 46px;
  color: #fffdfc;
  margin-bottom: 10px;
}

.highlight__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight__content h3 {
  font-size: 24px;
  color: #fff;
}

.highlight__content p {
  color: #fff;
  font-size: 17px;
}

.step .icon {
  font-size: 42px;
  color: #00ff22;
  margin: 10px 0;
}

.step__contnent {
  width: 150px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  border-radius: 100%;
  background-color: #ededed;
  position: relative;

}

.number {
  position: absolute;
  top: 10px;
  right: -10px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.step {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.step h3 {
  font-size: 24px;
}

.step p {
  font-size: 17px;
  color: #808080;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.about__content {
  display: flex;
  gap: 50px;
}

.image img {
  width: 100%;
}

.image,
.text {
  flex: 1;
}

.text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
}

.text p {
  font-size: 17px;
  font-size: #808080;
  margin-bottom: 10px;
}

.text h3 {
  font-size: 28px;
}

.tab__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 250px;
  float: left;
}

.tab__content {
  margin-left: 280px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.tab__content .image img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

.tab__link {
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  border: 1px solid #000;
  padding: 20px;
  /* border: none; */
  cursor: pointer;
  text-align: left;
}

.tab__link.active {
  background: #5ac946;
  color: #fff;
  border: 1px solid transparent;
}

.testimonial__wrap {
  display: flex;
  padding: 0 20px;
  gap: 10px;
  margin-top: 30px;
  align-items: center;
}

.testimonial__wrap img {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 100%;
}

.testimonial p {
  font-size: 18px;
  color: #333333;
}

.swiper-container {
  margin-bottom: -150px;
}

#testimonials

 {
    background-color: #7bc785;
    background-blend-mode: darken;
    padding: 100px 0 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 200px;
}

.swiper-container {
  margin-bottom: -200px;
}

#testimonials h2 {
  margin-bottom: 100px;
}
.post img{
width: 100%;
height: 250px;
object-fit: cover;
margin-bottom: 20px;
}
.post a{
  text-decoration: none;
}

.post  h3{
font-size: 20px;
text-decoration: none;
color: #000;
margin-bottom: 20px;
}
.post  h3:hover{
  color: #5ac946;
}
.post  p{
font-size: 17px;
color: #808080;
}
footer ul{
  list-style: none;
  padding-left: 0;
}
footer ul li{
  margin-bottom: 10px;
}
footer ul li a{
  text-decoration: none;
  color: #fff;

}
h4{
  font-size: 20px;
}
.social-icons{
  margin-top: 0px;
}
.copy{
  margin-top: 40px;
  text-align: center;
  font-weight: 700;
}


.footer__columns .social-icons a:hover {
  background: #ffffff;
  color: #000;
}

.footer__columns .column p i {
  margin-right: 8px;
  color: #ffffff;
}
footer p{
  margin-bottom: 10px;
}
.hero.pri{
height: 100%;
background-attachment: fixed;
}
.card p{
  font-size: 60px;
  font-weight: 600;
  color: #589167;
}
.card h3{
  margin-bottom: 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}
.card ul li{
font-size: 17px;
margin-bottom: 15px;
color: #999;
}
.pricing .btn {
  border: 0;
  color: #fff;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  width: 80%;
  background-color: #589167;
}
.counselor{
  padding: 80px 0;
}
.counselor__grids{
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
.counselor__grid img{
height: 300px;
width: 100%;
object-fit: cover;
}
.counselor__content{
padding: 15px;
}
.counselor__grid h3{
  text-align: center;
 
font-size: 22px;
margin-bottom: 5px;
}
.counselor__grid span{
  color: #589167;
  text-align: center;
  display: block;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
display: block;

}
.counselor__grid p{
font-size: 17px;
text-align: center;
color: #808080;
}
.items{
  padding: 40px 0;
}
.items__grig{
  display: flex;
  gap: 30px;
  justify-content: center;
}
.items__grid{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.items__grid span{
  font-weight: 700;
  display: block;
    font-size: 48px;
    color: #589167;
}
.items__grid p{
  display: block;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  line-height: 1.2;
  margin-bottom: 0;
}
.about .text ul {
  list-style: circle;
}
.serv{
  padding: 80px 0;
}
.serv__items{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.serv__i{
  display: flex;
}
.serv__i-img{
  position: relative;
}
.serv__i-img,
.serv__i-content{
  flex: 1;
}
.serv__i-img img{
width: 100%;
height: 100%;
object-fit: cover;
top: 0;
left: 0;
position: absolute;
}
.serv__i-content{
  padding: 30px;
}
.serv h2{
  margin-bottom: 50px;
  text-align: center;
}
.serv__i-content h3{
  font-size: 28px;
  margin-bottom: 20px;
}
.serv__i-content p{
font-size: 17px;
}
.serv__item:hover{
  background-color: #68f073;
}
.blog-item{
padding: 80px 0;
}
.blog-item img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blog-item p{
  font-size: 17px;
  color: #333333;
  margin-bottom: 10px;
}
.blog-item h3{
  margin-bottom: 10px;
}
.blog-item li{
  margin-bottom: 10px;
}
.cont__section {
  background: #f8f8f3;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.cont__info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 40px;
}

.info-box {
  flex: 1 1 200px;
  margin: 10px;
  color: #444;
}

.info-box i {
  font-size: 28px;
  background: #4caf50;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: inline-block;
}

.cont__content {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 350px;
  background: #ddd;
}
.map-container img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cont__form {
  flex: 1;
  padding: 30px;
  box-sizing: border-box;
  min-width: 300px;
}

.cont__form h3 {
  margin-bottom: 20px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #4caf50;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  resize: none;
}

.cont__form button {
  background: #4caf50;
  border: none;
  padding: 10px 25px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.cont__form button:hover {
  background: #388e3c;
}

@media (max-width: 768px) {
  .cont__content {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
.con{
  padding: 80px 0;
}
.faq__container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq__container h1 {
  text-align: center;
  margin-bottom: 30px;
}

.faq__item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}

.faq__question i {
  transition: transform 0.3s ease;
}

.faq__question.active i {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.faq__question:hover {
  color: #4caf50;
}
@media screen and (max-width:768px) {
  .highlights {
    display: flex
;
    flex-direction: column;
}
.highlights {
  width: 100%;
  margin-top: 0;
  background: #589167;
}
.hero {
  display: flex
;
  height: 100vh;
  background-repeat: no-repeat;
  background-color: #323232;
  align-items: center;
  padding: 100px 10px;
  background-size: cover;
  background-position: center;
  background-blend-mode: exclusion;
  justify-content: center;
}
#about {
  padding: 50px 0;
  display: flex
;
  gap: 20px;
}
#our-services {
  padding: 50px 0;
}
.tabs {
  display: flex
;
  flex-direction: column;
}
.tab__buttons {
  display: flex
;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  float: left;
  flex-wrap: wrap;
}
.tab__content {
  margin-left: 0;
  display: flex
;
  gap: 20px;
  flex-direction: column;
}

#testimonials{
  overflow: hidden;
  margin-bottom: 0;
}
.swiper-container {
  margin-bottom: 0;
}
#blog {
  padding: 50px 0;
  text-align: center;
}
footer {
  background: #1C2526;
  color: #FFFFFF;
  padding: 50px 0;
}
.footer__columns {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
header {
  display: flex
;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background: #8ca779;
  color: #FFFFFF;
  position: relative;
  position: fixed;
  width: 95%;
  top: 0;
  z-index: 1000;
}
.items__grig {
  display: flex
;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.serv__items {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
}
.serv__i-content {
  padding: 15px;
}
#pricing {
  padding: 50px 0;
  background: #F5F5F0;
  text-align: center;
}
.counselor__grids {
  display: grid
;
  gap: 40px;
  grid-template-columns: repeat(1, 1fr);
}
}
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}
.cookie-banner a {
  color: #0af;
  text-decoration: underline;
}
.cookie-banner button {
  background: #0af;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-banner button:hover {
  background: #008ee0;
}

