* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Inter', sans-serif;
  }
  a{
    text-decoration: none;
    color: inherit;
  }
  .header {
    background: #fff;
    padding: 15px 30px;
    width: 100%;
    position: fixed;
    z-index: 9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   
  }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .header__logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    color: #000;
  }
  .header__logo img {
    width: auto;
    height: 28px;
    margin-right: 8px;
  }
  .header__nav {
    display: flex;
  }
  .nav__list {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  .nav__list a{
    text-transform: uppercase;
    font-weight: 500;
  }
  .nav__link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.2s;
  }
  .nav__link.active,
  .nav__link:hover {
    color: #00c46f;
  }
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  .burger span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
  }
  @media (max-width: 768px) {
    .header__nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .header__nav.active {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }
  .hero {
   
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero__content {
    background: rgba(0, 0, 0, 0.4); /* затемнение фона */
    padding: 30px;
    margin: 0 auto;
    display: block;
    max-width: 700px;
    border-radius: 10px;
  }
  .hero__content span{
    margin-bottom: 30px;
    font-weight: 700;
    color: #f9f9f9;
    display: block;
    font-size: 20px;
  }
  .hero__title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  
  .hero__btn {
    background-color: #00c46f;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: fit-content;
    max-width: fit-content;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .hero__btn:hover {
    background-color: #00a45c;
  }
  
  @media (max-width: 768px) {
    .hero__title {
      font-size: 32px;
    }
  
    .hero {
      padding: 40px 20px;
      height: auto;
    }
  }
  .services {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
  }
  
  .services__wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .service {
    background: white;
    padding: 40px 30px 60px;
    border-radius: 12px;
    width: 320px;
    position: relative;
    transition: 0.3s ease-in-out;
  }
  
  .service--active {
    background: #00c46f;
    color: white;
  }
  
  .service__icon-circle {
    background: #eee;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00c46f;
  }
  
  .service--active .service__icon-circle {
    background: white;
    color: #00c46f;
  }
  
  .service__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .service__desc {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .service__arrow {
    background: #00c46f;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
  }
  
  .service--active .service__arrow {
    background: white;
    color: #00c46f;
  } 
  .why-choose {
    padding: 90px 20px;
    background-color: #fff;
  }
  
  .why-choose__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
 
    align-items: center;
    gap: 40px;
  }
  .why-choose__image {
    flex: 1;
  }
  .why-choose__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .why-choose__content {
    flex: 1;
  }
  
  .why-choose__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .why-choose__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .why-choose__item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .why-choose__icon {
    background-color: #04b45f;
    color: #fff;
    font-size: 20px;
    padding: 15px;
    border-radius: 50%;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .why-choose__item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
  }
  
  .why-choose__item p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }
  .stats {
    background-color: #04b45f; /* Зеленый фон */
    padding: 90px 20px;
    text-align: center;
    color: white;
  }
  
  .stats__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .stats__item {
    flex: 1 1 200px;
  }
  
  .stats__number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .stats__label {
    font-size: 16px;
  }
  .faq-us {
    padding: 90px 0px;
    background-color: #f9fbfd;
    font-family: 'Poppins', sans-serif;
  }
  
  .faq-us__container {
    display: flex;
    gap: 40px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .faq-us__left {
    flex: 1;
    min-width: 300px;
  }
  
  .faq-us__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .faq-us__subtitle {
    margin-bottom: 20px;
    color: #666;
  }
  
  .faq-us__accordion {}
  
  .faq-us__item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  
  .faq-us__item--active .faq-us__button {
    background-color: #04b45f;
    color: #fff;
  }
  
  .faq-us__button {
    background: #fff;
    color: #111;
    font-weight: 600;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-us__icon {
    font-size: 20px;
  }
  
  .faq-us__content {
    max-height: 0;
    padding: 0 20px;
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .faq-us__item--active .faq-us__content {
    padding: 15px 20px;
    max-height: 500px;
  }
  
  .faq-us__list {
    margin: 0;
    padding-left: 20px;
  }
  
  .faq-us__right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .faq-us__video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .faq-us__video-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }
  
  .faq-us__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: #04b45f;
    font-size: 30px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .faq-us__thumbnails {
    display: flex;
    gap: 10px;
  }
  
  .faq-us__thumb {
    width: calc(50% - 5px);
   
  }
  .testimonials {
    padding: 80px 20px;
    position: relative;
    color: #111;
  }
  
  .testimonials__background {
  
    padding: 60px 0;
  }
  
  .testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .testimonials__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .testimonials__slider {
    padding: 0 20px;
  }
  
  .testimonials__slide {
    display: flex;
    justify-content: center;
  }
  
  .testimonials__card {
    background: #ffffff61;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .testimonials__quote {
    position: absolute;
    top: 0px;
    left: 30px;
    background-color: #04b45f;
    color: white;
    font-size: 24px;
    padding: 10px;
    height: 30px;
    min-width: 30px;
    display: flex
;
    width: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}
  
  .testimonials__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .testimonials__user {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonials__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonials__name {
    font-weight: 600;
  }
  
  .testimonials__position {
    font-size: 13px;
    color: #666;
  }
  
  .testimonials__pagination {
    margin-top: 30px;
    text-align: center;
  }
  .pets-gallery {
    padding: 90px 15px;
    text-align: center;
  }
  
  .pets-gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  .pets-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .pets-gallery__grid a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: cover;
  }
  
  .pets-gallery__grid a img:hover {
    transform: scale(1.05);
  }
  .blog {
    padding: 90px 20px;
    text-align: center;
    background-color: #f9fbfd;
  }
  
  .blog__title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .blog__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
  }
  
  .blog__item:hover {
    transform: translateY(-5px);
  }
  
  .blog__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog__content {
    padding: 20px;
    text-align: left;
  }
  
  .blog__meta {
    font-size: 0.875rem;
    color: #888;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .blog__meta i {
    color: #00c853;
  }
  
  .blog__text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
  }
  .consultation {
    width: 100%;
    background: linear-gradient(to right, #007aff, #00c853);
    color: #fff;
  }
  
  .consultation__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  
  .consultation__image {
    flex: 1;
    min-width: 300px;
  }
  
  .consultation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .consultation__form {
    flex: 1;
    padding: 80px 40px;
    min-width: 300px;
    background: linear-gradient(to right, #007aff, #00c853);
    color: #fff;
  }
  
  .consultation__form h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  
  .consultation__input,
  .consultation__textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
  }
  
  .consultation__row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .consultation__row input {
    flex: 1;
  }
  
  .consultation__textarea {
    resize: vertical;
    height: 120px;
  }
  
  .consultation__btn {
    width: 100%;
    background-color: #00c853;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 15px;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .consultation__btn:hover {
    background-color: #00b44b;
  }
  form

 {
    width: fit-content;
}
.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 30px;
  
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer__column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #00e676;
  display: inline-block;
  padding-bottom: 5px;
}

.footer__socials a {
  display: inline-block;
  margin-right: 10px;
  background: #222;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer__socials a:hover {
  background: #00e676;
}

.footer__news-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.footer__news-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
}

.footer__links a:hover {
  color: #00e676;
}

.footer__column p i {
  margin-right: 8px;
  color: #00e676;
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer__bottom a {
  color: #00e676;
  text-decoration: none;
}
.footer__column p{
  margin-bottom: 5px;
}
.why-choose__title ~ p{
  margin-bottom: 30px;
}
.why-choose__container + .why-choose__container{
  margin-top: 50px;
}
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.pricing {
  padding: 90px 20px;
  background: #f8f9fd;
  text-align: center;
}

.pricing__container {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
margin-top: 50px;
grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 30px;
  row-gap:60px ;
}

.pricing__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  overflow: hidden;
  max-width: 100%;
  transition: transform 0.3s;
}

.pricing__card:hover {
  transform: translateY(-5px);
}

.pricing__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pricing__title {
  color: #00b050;
  font-weight: 700;
  margin: 15px 0 10px;
  text-transform: uppercase;
}

.pricing__price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing__price sup {
  font-size: 20px;
  top: -1em;
  position: relative;
}

.pricing__price sub {
  font-size: 14px;
  color: #888;
  margin-left: 4px;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 20px 20px;
}

.pricing__features li {
  background: #f0f0f0;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
}

.pricing__btn {
  display: inline-block;
  background: #00b050;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 20px auto;
  text-decoration: none;
  transition: background 0.3s;
}

.pricing__btn:hover {
  background: #00943f;
}
.news-detail {
  padding: 90px 20px;
  background: #fff;
  
}

.news-detail__container {
  max-width: 800px;
  margin: 0 auto;
}

.news-detail__image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
  object-fit: cover;
  max-height: 400px;
}

.news-detail__meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-detail__title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

.news-detail__text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.news-detail__quote {
  font-style: italic;
  background: #f9f9f9;
  border-left: 4px solid #00b050;
  padding: 15px 20px;
  margin: 30px 0;
  font-size: 18px;
  color: #555;
  border-radius: 4px;
}
.contact {
  background: #f8f9fc;
  padding: 90px 10px;
  
}

.contact__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.contact__info {
  flex: 1;
  min-width: 200px;
  color: #333;
}

.contact__icon {
  font-size: 28px;
  color: #0abe6e;
  margin-bottom: 10px;
}

.contact__link {
  color: #0abe6e;
  text-decoration: none;
}

.contact__wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.contact__form-box {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.contact__title {
  margin-bottom: 30px;
  font-size: 28px;
}

.contact__form {}

.contact__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact__label {
  font-size: 13px;
  color: #0abe6e;
  margin-bottom: 6px;
  font-weight: bold;
  text-transform: uppercase;
}

.contact__input,
.contact__textarea {
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
}

.contact__btn {
  background: #0abe6e;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.contact__image {
  flex: 1;
  min-width: 300px;
}

.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-it {
  padding: 90px 0px;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-it__title {
  font-size: 32px;
  margin-bottom: 40px;
}
.testimonial-it__container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.testimonial-it__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-it__item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.testimonial-it__text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-it__author {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.testimonial-it__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-it__name {
  font-weight: bold;
}

.testimonial-it__position {
  font-size: 14px;
  color: #777;
}
.faq-it {
  padding: 60px 20px;
  background: #fff;
}

.faq-it__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-it__item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-it__question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 18px;
  background: #f1f1f1;
  border: none;
  cursor: pointer;
  outline: none;
  font-weight: bold;
}

.faq-it__answer {
  display: none;
  padding: 15px;
  background: #fafafa;
  font-size: 16px;
  color: #444;
}
.faq-it__container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
.terms{
  padding: 90px 0;
}
.terms .container{
  display: flex;
  gap: 15px;

  flex-direction: column;
}
.terms ul,
.terms ol{
  padding-left: 20px;
}
.terms li{
  margin-bottom: 10px;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
  z-index: 1000;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 0.5s ease;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-banner__text {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner__btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner__btn--accept {
  background-color: #28a745;
  color: #fff;
}

.cookie-banner__btn--decline {
  background-color: #e0e0e0;
  color: #333;
}

@keyframes fadeInUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.faq-us__content p{
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .header__nav.active
  .nav__list

 {
    list-style: none;
    display: flex
;
    top: 0;
    /* margin-top: -43px; */
    gap: 25px;
    flex-direction: column;
}

  .header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 57px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.hero

 {
        padding: 65px 20px;
        height: auto;
    }
    .why-choose__container

 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex
;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}
.why-choose__item {
  display: flex
;
  gap: 15px;
  align-items: flex-start;
  flex-direction: column;
}
.pricing__container {
  display: grid
;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  grid-template-columns: repeat(1, 1fr);
  justify-content: center;
  gap: 30px;
  row-gap: 60px;
}
}