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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  background-color: #F5F5F0;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: "Wix Madefor Display", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input,
textarea {
  font-family: "Wix Madefor Display", sans-serif;
  border: none;
  outline: none;
  width: 100%;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0F483C;
  color: #FFFFFF;
  font-weight: 500;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #061e19;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

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

.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn--outline {
  background-color: transparent;
  border: 1px solid #0F483C;
  color: #0F483C;
}

.btn--outline:hover {
  background-color: #0F483C;
  color: #FFFFFF;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0F483C;
  margin-bottom: 30px;
}

.header {
  background-color: #FFFFFF;
  padding: 20px 0;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo__img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo__text {
  font-size: 20px;
  font-weight: 700;
  color: #0F483C;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.nav__link {
  font-weight: 500;
}

.nav__link:hover {
  color: #0B6E4F;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #0F483C;
  border-radius: 3px;
}

.hero {
  padding: 80px 0 40px;
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  color: #0F483C;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero__text {
  font-size: 18px;
  margin-bottom: 16px;
}

.hero__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat__number {
  font-size: 28px;
  font-weight: 700;
  color: #0F483C;
  margin-bottom: 10px;
}

.stat__text {
  font-size: 16px;
  line-height: 1.4;
}

.showcase {
  padding: 40px 0;
}

.showcase__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase__img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.about {
  padding: 80px 0;
}

.about__content {
  max-width: 900px;
  margin: 0 auto;
}

.about__text {
  margin-bottom: 16px;
  font-size: 17px;
}

.about__text:first-of-type {
  font-size: 20px;
  font-weight: 500;
}

.about__cta {
  margin-top: 40px;
  text-align: center;
}

.about__tagline {
  font-size: 20px;
  font-weight: 500;
  color: #0F483C;
  margin-bottom: 20px;
}

.vision {
  background-color: #0F483C;
  color: #FFFFFF;
  padding: 80px 0;
}

.vision .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vision__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.vision__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vision__text {
  margin-bottom: 24px;
}

.vision__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.services {
  padding: 80px 0;
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.services__cta {
  text-align: center;
}

.service-card {
  background-color: #0F483C;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 4px;
  height: 100%;
}

.service-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card__text {
  font-size: 16px;
  line-height: 1.5;
}

.contact {
  padding: 80px 0;
  background-color: #F5F5F0;
}

.contact__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.contact__form-container {
  background-color: #0F483C;
  padding: 40px;
  border-radius: 4px;
  color: #FFFFFF;
}

.contact__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact .btn {
  background: #fff;
  color: #121212;
}

.form-group input {
  padding: 14px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.form-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer {
  background-color: #FFFFFF;
  padding: 60px 0 30px;
}

.footer__top {
  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;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  margin-bottom: 30px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__link:hover {
  color: #0F483C;
}

.footer__bottom {
  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;
}

.footer__copyright {
  font-size: 14px;
  color: #666666;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0F483C;
  border-radius: 50%;
}

.social__link:hover {
  background-color: #0B6E4F;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.social__icon {
  width: 20px;
  height: 20px;
}

.success-page {
  padding: 80px 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: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-title {
  font-size: 36px;
  font-weight: 700;
  color: #0F483C;
  margin-bottom: 24px;
}

.success-text {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  padding: 20px;
  color: #FFFFFF;
  z-index: 1000;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.cookie-popup.show {
  -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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.cookie-popup__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

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

@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #FFFFFF;
    padding: 80px 30px;
    -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 99;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .nav__link {
    font-size: 18px;
  }
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero {
    padding: 60px 0 30px;
  }
  .hero__title {
    font-size: 32px;
  }
  .vision .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact__content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .showcase__images {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__stats {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .services__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .cookie-popup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy h1 {
  margin-bottom: 32px;
  font-size: 32px;
}
/*# sourceMappingURL=style.css.map */