* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
    background: #fff;
  }
  .header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
    padding-top: 5px;
  }
  .header__container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    color: #333;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
  }
  .logo .dot {
    color: #4f7df9;
  }
  .nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  .nav__list li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: 0.3s;
  }
  .nav__list li a:hover {
    color: #4f7df9;
  }
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;

  }
  .hero .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 30px;
    flex-wrap: wrap;
  }
  .hero__content {
    max-width: 500px;
  }
  .hero__content h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .hero__content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
  }
  .btn {
    display: inline-block;
    background: #4f7df9;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(79, 125, 249, 0.3);
  }
  .hero__image img {
    width: 100%;
    max-width: 500px;
  }
  
  /* Burger */
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
  }
  .burger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .burger {
      display: flex;
    }
  
    .nav__list {
      position: absolute;
      top: 70px;
      right: 0;
      background: #fff;
      flex-direction: column;
      gap: 20px;
      width: 200px;
      height: 100vh;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      display: none;
    }
  
    .nav__list.active {
      display: flex;
    }
  
    .hero {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .hero__image img {
      max-width: 100%;
      margin-bottom: 40px;
    }
  }
  .features {
    padding: 60px 0px;
    text-align: center;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  .features h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .features p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 80px;
    font-size: 16px;
  }
  
  .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  .features__item {
    background: #f9f9f9;
    padding: 40px 20px 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
    transition: 0.3s;
  }
  .features__item:hover {
    transform: translateY(-5px);
  }
  
  .features__icon {
    width: 60px;
    height: 60px;
    background: #4f7df9;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px;
    box-shadow: 0 10px 25px rgba(79, 125, 249, 0.3);
  }
  
  .features__item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .features__item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  .features__item a {
    display: inline-block;
    margin-top: 15px;
    color: #4f7df9;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
  }
  .feedback {
padding: 80px 0;
  }
  .feedback__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
   
  }
  .feedback  .container{
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .feedback__image {
    flex: 1 1 50%;
    text-align: center;
  }
  .feedback__image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
  }
  
  .feedback__content {
    flex: 1 1 40%;
  }
  
  .feedback__content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .feedback__content p {
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .feedback__card {
    border-left: 5px solid #3d66f7;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  }
  
  .feedback__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .feedback__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .feedback__quote {
    font-style: italic;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
  }
  .team {
    padding: 80px 0px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .team h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .team p {
    font-size: 18px;
    color: #666;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto 40px;
  }
  
  .team__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .team__member {
    max-width: 300px;
    text-align: left;
  }
  
  .team__member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
  }
  
  .team__member h3 {
    margin: 15px 0 5px;
    font-size: 18px;
  }
  
  .team__role {
    display: block;
    color: #4e8af0;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .team__member p {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
  }
  .testimonial {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    background: #fafafa;
  }
  
  .testimonial__title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
  }
  
  .testimonial__slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .testimonial__slide {
    display: none;
    animation: fade 0.5s ease-in-out;
  }
  
  .testimonial__slide.active {
    display: block;
  }
  
  .testimonial__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .testimonial blockquote {
    font-style: italic;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    margin-inline: auto;
  }
  
  .testimonial__name {
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .testimonial__dots {
    margin-top: 20px;
  }
  
  .dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #007bff;
  }
  
  @keyframes fade {
    from { opacity: 0.3; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
  .blog {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .blog__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .blog__card {
    text-align: left;
  }
  
  .blog__card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .blog__card h3 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  
  .blog__meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
  }
  
  .blog__meta a {
    color: #007bff;
    text-decoration: none;
  }
  
  .blog__meta a:hover {
    text-decoration: underline;
  }
  
  .blog__card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
  }
  
  .blog__link {
    color: #007bff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
  }
  
  .blog__link:hover {
    text-decoration: underline;
  }
  .footer {
    background: #fff;
    color: #555;
    font-family: 'Segoe UI', sans-serif;
    padding: 40px 20px 20px;
    border-top: 1px solid #eee;
  }
  
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
  }
  
  .footer__col {
    flex: 1 1 200px;
  }
  
  .footer__col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
  }
  
  .footer__col p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer__col ul li {
    margin-bottom: 10px;
  }
  
  .footer__col ul a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer__col ul a:hover {
    text-decoration: underline;
  }
  
  .footer__socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer__socials a {
    font-size: 16px;
    color: #007bff;
    transition: 0.3s;
  }
  
  .footer__socials a:hover {
    color: #0056b3;
  }
  
  .footer__bottom {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  
  .footer__bottom span {
    color: red;
    font-size: 14px;
  }
  .contact{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #6aacf1;
    padding: 100px 0;
    background-attachment: fixed;
    background-blend-mode: multiply;
  }
  .contact h2{
    text-align: center;
    color: #fff;
    font-size: 36px;

  }
  .contact p{
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .features__wrapper{
    display: flex;
    gap: 55px;
    margin-bottom: 50px;
  }
  .features__wrap{
    flex: 1;
  }
  .features__wrap img{
   width: 100%;
   height: 400px;
   object-fit: cover;
  }
  .about {
    padding: 60px 20px;
    background: #fefefe;
    font-family: 'Segoe UI', sans-serif;
  }
  .about__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
margin: 0 auto;
max-width: 1200px;
  }
  .about__image img {
    max-width: 100%;
    height: auto;
  }
  .about__image{
    flex: 1;
  }
  .about__content {
    flex: 1;
    max-width: 500px;
  }
  .about__title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
  }
  .about__text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  .about__list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
  }
  .about__button {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  .about__button:hover {
    background-color: #2563eb;
  }
  .test {
    padding: 60px 20px;
    text-align: center;
  }
  .test__title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
  }
  .test__item {
    background: white;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  .test__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .test__text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
  }
  .test__author {
    font-weight: bold;
  }
  .test__items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .blog.blo {
    max-width: 900px;
    margin: 0 auto;
  }
  .blog.blo .blog__grid {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.post {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .post__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  .post__meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 10px;
  }
  .post__title {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #222;
  }
  .post__content {
    font-size: 1.05em;
    color: #333;
  }
  .contact-us {
    padding: 60px 20px;
  }


  .contact-us__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-us__item {
    flex: 1 1 220px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .contact-us__item h3 {
    margin-bottom: 10px;
    color: #007bff;
    font-size: 18px;
  }

  .contact-us__main {
    display: flex
;
  flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 40px;
}

  .contact-us__map {
    flex: 1 1 50%;
    height: 300px;
  }

  .contact-us__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
  }

  .contact-us__form {
    flex: 1 1 50%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .contact-us__form input,
  .contact-us__form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }

  .contact-us__form button {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }

  .contact-us__form button:hover {
    background-color: #0056b3;
  }

  @media (max-width: 768px) {
    .contact-us__main {
      flex-direction: column;
    }
  }
  .gallerys {
    padding: 90px 0;
  }
  .gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .gallery img {
    width: 100%;
    object-fit: cover;
    height: 300px;
    transition: transform 0.3s ease;
    display: block;
}

  .gallery a:hover img {
    transform: scale(1.05);
  }
  .faq {
    padding: 90px 0;
    max-width: 800px;
    margin: 0 auto;
  }

  .faq h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
  }

  .faq__item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }

  .faq__question {
    padding: 15px 20px;
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }

  .faq__answer {
    display: none;
    padding: 20px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
  }

  .faq__item.active .faq__answer {
    display: block;
  }
.faq .container{
    display: flex;
    gap: 55px;
}
.faq__item__wrap,
.faq__item__items{
    flex: 1;
}
.terms{
    padding: 90px 0;
}
.terms ul{
    padding-left: 20px;
}
.terms ul li{
    margin-bottom: 10px;
}
@media screen and (max-width:768px) {
    .hero .container {
        display: flex
    ;
        align-items: center;
        justify-content: space-between;
        padding: 80px 30px;
        flex-wrap: wrap;
        gap: 40px;
    }
    .features__wrapper {
        display: flex
    ;
        gap: 5px;
        margin-bottom: 50px;
        flex-direction: column;
    }
    .about__container

 {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    max-width: 1200px;
    flex-direction: column;
}
.test__items {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
}
.faq .container {
    display: flex
;
    gap: 15px;
    flex-direction: column;
}
}
.cookie__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
  .cookie__banner__text p {
    margin: 0;
    font-size: 14px;
  }
  .cookie__banner__text a {
    color: #90cdf4;
    text-decoration: underline;
  }
  .cookie__banner__button {
    background-color: #48bb78;
    border: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }
  .cookie__banner__button:hover {
    background-color: #38a169;
  }