*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #11553d;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #16a34a;
}

ul {
  list-style-type: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #16a34a;
  margin: 0.75rem auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn--primary {
  background-color: #16a34a;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #138d40;
  color: #ffffff;
}

.btn--secondary {
  background-color: transparent;
  color: #11553d;
  border: 1px solid #11553d;
}

.btn--secondary:hover {
  background-color: #e6f4ee;
}

.btn--full {
  width: 100%;
}

.header {
  background-color: #ffffff;
  padding: 1rem 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #11553d;
  margin: 0;
}

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

@media (max-width: 768px) {
  .navigation {
    display: none;
  }
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.navigation__item {
  position: relative;
}

.navigation__link {
  color: #1f2937;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.navigation__link:hover {
  color: #16a34a;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #11553d;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu__navigation {
  margin-top: 2rem;
}

.mobile-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1f2937;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu__link:hover {
  color: #16a34a;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-close span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #11553d;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  top: 14px;
}

.mobile-menu-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hero {
  background-color: #e6f4ee;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}

.hero__content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}

.hero__highlight {
  color: #16a34a;
}

.hero__text {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero__text {
    font-size: 1rem;
  }
}

.about {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }
}

.about__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .about__content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about__text p {
  margin-bottom: 1rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services {
  background-color: #f9fafb;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .services__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.service-card__icon img {
  width: 100%;
  height: auto;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #11553d;
}

.service-card__text {
  color: #4b5563;
  font-size: 0.95rem;
}

.benefits {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .benefits {
    padding: 3rem 0;
  }
}

.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .benefits__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.benefit-card {
  text-align: center;
  padding: 1.5rem;
}

.benefit-card__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.benefit-card__icon img {
  width: 100%;
  height: auto;
}

.benefit-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #11553d;
}

.benefit-card__text {
  color: #4b5563;
  font-size: 0.9rem;
}

.contact {
  background-color: #f9fafb;
  background: url(./assets/13.png);
  background-size: cover;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .contact-form {
    padding: 1.5rem;
  }
}

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

.form-group:last-child {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #11553d;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-group--checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
}

.form-group--checkbox label a {
  color: #16a34a;
  text-decoration: underline;
}

.success {
  padding: 5rem 0;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .success__content {
    padding: 2rem;
  }
}

.success__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #11553d;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .success__title {
    font-size: 1.75rem;
  }
}

.success__text {
  margin-bottom: 1rem;
}

.success__text:last-of-type {
  margin-bottom: 2rem;
}

.footer {
  background-color: #0f3a2a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer a {
  color: #ffffff;
  opacity: 0.9;
}

.footer a:hover {
  color: #ffffff;
  opacity: 1;
}

.footer__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 992px) {
  .footer__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer__text {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__list li {
  margin-bottom: 0.75rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 9999;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cookie-popup.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup__content {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .cookie-popup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.cookie-popup__content p {
  margin-right: 2rem;
}

@media (max-width: 768px) {
  .cookie-popup__content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

@media (max-width: 576px) {
  .cookie-popup__buttons {
    width: 100%;
  }
  .cookie-popup__buttons .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #11553d;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #16a34a;
}

ul {
  list-style-type: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #16a34a;
  margin: 0.75rem auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn--primary {
  background-color: #16a34a;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #138d40;
  color: #ffffff;
}

.btn--secondary {
  background-color: transparent;
  color: #11553d;
  border: 1px solid #11553d;
}

.btn--secondary:hover {
  background-color: #e6f4ee;
}

.btn--full {
  width: 100%;
}

.header {
  background-color: #ffffff;
  padding: 1rem 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #11553d;
  margin: 0;
}

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

@media (max-width: 768px) {
  .navigation {
    display: none;
  }
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.navigation__item {
  position: relative;
}

.navigation__link {
  color: #1f2937;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.navigation__link:hover {
  color: #16a34a;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #11553d;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 10px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu__navigation {
  margin-top: 2rem;
}

.mobile-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu__link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1f2937;
  display: block;
  padding: 0.5rem 0;
}

.mobile-menu__link:hover {
  color: #16a34a;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-close span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #11553d;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  top: 14px;
}

.mobile-menu-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p {
  padding-top: 100px;
  padding-bottom: 100px;
}
/*# sourceMappingURL=style.css.map */