@charset "UTF-8";
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
@media (max-width: 1023px) {
  .container {
    padding-inline: clamp(16px, 5vw, 24px);
  }
}
@media (max-width: 767px) {
  .container {
    padding-inline: clamp(16px, 6vw, 20px);
  }
}

@layer reset, lazy, ratios;
@layer reset {
  img[src$=".svg"],
  picture img[src$=".svg"] {
    opacity: 1 !important;
    -webkit-filter: none !important;
            filter: none !important;
    -webkit-transform: none;
            transform: none;
  }
  img:not(.logo),
  picture img:not(.logo) {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    will-change: opacity, filter, transform;
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: opacity 0.5s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.5s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease;
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease, -webkit-filter 0.5s ease, -webkit-transform 0.4s ease;
  }
  img.logo {
    max-width: none !important;
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: none;
            transform: none;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@layer lazy {
  img.loading:not(.logo),
  picture img.loading:not(.logo) {
    opacity: 0.4;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(0.99);
            transform: scale(0.99);
  }
  img.loaded:not(.logo),
  picture img.loaded:not(.logo) {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@layer ratios {}
body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4D4D4D;
  background-color: #FFFFFF;
}
body.no-scroll {
  overflow: hidden;
}

*:focus-visible {
  outline: 3px solid #5E8C61;
  outline-offset: 3px;
  border-radius: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

h1, .h1 {
  color: #4D4D4D;
  font-family: "DM Serif Display", "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 6.5rem;
  line-height: 1.1;
}
@media (max-width: 1919px) {
  h1, .h1 {
    font-size: 5.5rem;
  }
}
@media (max-width: 1439px) {
  h1, .h1 {
    font-size: 4.5rem;
  }
}
@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2, h3, .h3 {
  color: #4D4D4D;
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
}

.observe {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.observe.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.observe:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.observe:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.observe:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.observe:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.observe:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.observe:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.observe:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.observe:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.observe:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.observe:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

img.lazy.loading {
  -webkit-filter: blur(20px);
          filter: blur(20px);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

img.lazy.loaded {
  -webkit-filter: none;
          filter: none;
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5E8C61, #2F5D3B);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 20px rgba(47, 93, 59, 0.3);
          box-shadow: 0 4px 20px rgba(47, 93, 59, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.scroll-top:not(.visible) {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
}
.scroll-top svg .cls-1 {
  stroke: #FFFFFF;
}
.scroll-top:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(47, 93, 59, 0.4);
          box-shadow: 0 8px 30px rgba(47, 93, 59, 0.4);
}
.scroll-top:active {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.scroll-top:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-moz-selection {
  background-color: #5E8C61;
  color: #FFFFFF;
}

::selection {
  background-color: #5E8C61;
  color: #FFFFFF;
}

/* Reset the default margin, padding, and box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Set default font and line-height */
html {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  scroll-behavior: smooth; /* Smooth scrolling */
}

/* Remove default body margin and set height to 100% */
body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed; /* Speed up text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve media elements default styles */
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
  background-color: transparent;
  border: none;
}

/* Remove built-in form element styles */
button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* Remove additional space for inputs on iOS */
textarea {
  overflow: auto;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Make links consistent across browsers */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Table border collapse */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset for iframe */
iframe {
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background-color: #2F5D3B;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
.skip-link:focus {
  top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  padding: 1.5rem 0;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  .header {
    padding: 1rem 0;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 0.75rem 0;
  }
}
.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: -webkit-gradient(linear, left top, right top, from(#5E8C61), to(#2F5D3B));
  background: linear-gradient(90deg, #5E8C61, #2F5D3B);
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
  -webkit-box-shadow: 0 0 8px rgba(94, 140, 97, 0.5);
          box-shadow: 0 0 8px rgba(94, 140, 97, 0.5);
}
.header--scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}
.header:hover {
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.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;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .header__container {
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 0.75rem;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo-img {
  display: block;
  width: 160px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .header__logo-img {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .header__logo-img {
    width: 110px;
  }
}
.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    z-index: 9998;
  }
  .header__nav--active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2F5D3B;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 1023px) {
  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #5E8C61;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.header__nav-link:hover {
  color: #5E8C61;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__nav-link--active {
  color: #5E8C61;
}
.header__nav-link--active::after {
  width: 100%;
}
.header__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1023px) {
  .header__button {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .header__button {
    display: none !important;
  }
}
.header__burger {
  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: 28px;
  height: 22px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 9999;
}
@media (max-width: 1023px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .header__burger {
    width: 26px;
    height: 20px;
  }
}
.header__burger-line {
  width: 100%;
  height: 2.5px;
  background-color: #2F5D3B;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .header__burger-line {
    height: 2px;
  }
}
.header__burger--active .header__burger-line:nth-child(1) {
  -webkit-transform: translateY(9.75px) rotate(45deg);
          transform: translateY(9.75px) rotate(45deg);
}
@media (max-width: 767px) {
  .header__burger--active .header__burger-line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
}
.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger--active .header__burger-line:nth-child(3) {
  -webkit-transform: translateY(-9.75px) rotate(-45deg);
          transform: translateY(-9.75px) rotate(-45deg);
}
@media (max-width: 767px) {
  .header__burger--active .header__burger-line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
}

.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 50px;
  padding: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #2F5D3B;
  border: 2px solid #2F5D3B;
  border-radius: 24px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.6s ease, height 0.6s ease;
  transition: width 0.6s ease, height 0.6s ease;
}
.button:hover {
  background-color: #5E8C61;
  border-color: #5E8C61;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(47, 93, 59, 0.3);
          box-shadow: 0 8px 16px rgba(47, 93, 59, 0.3);
}
.button:hover::before {
  width: 300px;
  height: 300px;
}
.button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 4px 8px rgba(47, 93, 59, 0.2);
          box-shadow: 0 4px 8px rgba(47, 93, 59, 0.2);
}
.button:focus-visible {
  outline: 3px solid #5E8C61;
  outline-offset: 3px;
}
.button > * {
  position: relative;
  z-index: 1;
}
.button--outline {
  background-color: transparent;
  color: #2F5D3B;
}
.button--outline:hover {
  background-color: #2F5D3B;
  color: #FFFFFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#F7F4EC), to(#F7F4EC));
  background: linear-gradient(180deg, #F7F4EC 0%, #F7F4EC 100%);
  padding: 0;
  overflow: hidden;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@media (max-width: 1023px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 2rem 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 1.5rem 0;
  }
}
.hero__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.hero__content {
  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;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.hero__title {
  color: #2F5D3B;
  margin: 0;
  font-family: "DM Serif Display", "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: 6.5rem;
  line-height: 1.1;
}
@media (max-width: 1919px) {
  .hero__title {
    font-size: 5.5rem;
  }
}
@media (max-width: 1439px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
.hero__subtitle {
  color: #5E8C61;
  max-width: 500px;
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .hero__subtitle {
    max-width: 100%;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.hero__image-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero__image-wrapper {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-top: 1rem;
  }
}
.hero__product {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero__product {
    max-width: 240px;
  }
}
.hero__decor {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 143px), -50%);
          transform: translate(calc(-50% + 143px), -50%);
  width: 120%;
  max-width: 600px;
  height: auto;
  z-index: 1;
  opacity: 0.3;
}
@media (max-width: 767px) {
  .hero__decor {
    width: 90%;
    max-width: 300px;
    -webkit-transform: translate(calc(-50% + 60px), -50%);
            transform: translate(calc(-50% + 60px), -50%);
    opacity: 0.25;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-icon {
  width: 32px;
  height: auto;
  display: block;
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation: bounce 2s ease-in-out infinite;
          animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-icon:hover {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 767px) {
  .hero__scroll-icon {
    width: 24px;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.about {
  position: relative;
  padding: 5rem 0;
  background-color: #FFFBF8;
  overflow: hidden;
  z-index: 10;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@media (max-width: 1023px) {
  .about {
    padding: 3.5rem 0;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 3rem 0;
  }
}
.about__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1439px) {
  .about__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 767px) {
  .about__container {
    gap: 2rem;
  }
}
.about__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.75rem;
  color: #2F5D3B;
  letter-spacing: 0.05em;
}
.about__section-title::before, .about__section-title::after {
  content: "";
  width: 2px;
  height: 170px;
  background-color: #2F5D3B;
}
@media (max-width: 1023px) {
  .about__section-title {
    font-size: 2.75rem;
    gap: 1.25rem;
  }
  .about__section-title::before, .about__section-title::after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .about__section-title {
    font-size: 1.2rem;
    gap: 1rem;
  }
  .about__section-title::before, .about__section-title::after {
    width: 1.5px;
    height: 80px;
  }
}
.about__section-title {
  margin: 0;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1439px) {
  .about__section-title {
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.5rem;
  }
  .about__section-title::before, .about__section-title::after {
    width: 80px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .about__section-title {
    font-size: 1.875rem;
  }
  .about__section-title::before, .about__section-title::after {
    width: 70px;
    height: 1.5px;
  }
}
.about__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  .about__content {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .about__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}
.about__list {
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-column: 3/7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .about__list {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .about__list {
    grid-column: 1/-1;
    gap: 1.25rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .about__item {
    gap: 1rem;
  }
}
.about__icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: #5E8C61;
}
@media (max-width: 767px) {
  .about__icon {
    width: 28px;
    height: 28px;
  }
}
.about__text {
  font-family: "Cormorant Garamond", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .about__text {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .about__text {
    font-size: 0.9375rem;
  }
}
.about__image-wrapper {
  -ms-grid-column: 7;
  -ms-grid-column-span: 4;
  grid-column: 7/11;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .about__image-wrapper {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
}
@media (max-width: 767px) {
  .about__image-wrapper {
    grid-column: 1/-1;
  }
}
.about__product {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  z-index: 2;
}
@media (max-width: 1023px) {
  .about__product {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .about__product {
    max-width: 240px;
  }
}
.about__decor {
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-5%, -50%);
          transform: translate(-5%, -50%);
  width: 100%;
  max-width: 500px;
  height: auto;
  z-index: 1;
  opacity: 0.4;
}
@media (max-width: 1023px) {
  .about__decor {
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .about__decor {
    max-width: 280px;
    left: 50%;
    -webkit-transform: translate(-20%, -50%);
            transform: translate(-20%, -50%);
    opacity: 0.3;
  }
}

.products {
  position: relative;
  padding: 5rem 0;
  background-color: #F7F4EC;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .products {
    padding: 4rem 0;
  }
}
.products__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1439px) {
  .products__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 1023px) {
  .products__container {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .products__container {
    gap: 1.5rem;
  }
}
.products__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.75rem;
  color: #2F5D3B;
  letter-spacing: 0.05em;
}
.products__section-title::before, .products__section-title::after {
  content: "";
  width: 2px;
  height: 170px;
  background-color: #2F5D3B;
}
@media (max-width: 1023px) {
  .products__section-title {
    font-size: 2.75rem;
    gap: 1.25rem;
  }
  .products__section-title::before, .products__section-title::after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .products__section-title {
    font-size: 1.2rem;
    gap: 1rem;
  }
  .products__section-title::before, .products__section-title::after {
    width: 1.5px;
    height: 80px;
  }
}
.products__section-title {
  margin: 0;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1439px) {
  .products__section-title {
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.5rem;
  }
  .products__section-title::before, .products__section-title::after {
    width: 80px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .products__section-title {
    font-size: 1.875rem;
  }
  .products__section-title::before, .products__section-title::after {
    width: 70px;
    height: 1.5px;
  }
}
.products__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem 2rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  .products__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  .products__content {
    gap: 2rem;
  }
}
.products__intro {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}
@media (max-width: 1023px) {
  .products__intro {
    grid-column: 1/-1;
  }
}
.products__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  color: #4D4D4D;
  color: #2F5D3B;
  margin: 0 0 1.5rem;
}
@media (max-width: 1023px) {
  .products__heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .products__heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.products__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .products__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .products__description {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.products__list {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1023px) {
  .products__list {
    grid-column: 1/-1;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .products__list {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}
.products__decor {
  display: none;
}

.product-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 600px;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 140, 97, 0.1), rgba(47, 93, 59, 0.05));
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.product-card:hover {
  -webkit-transform: translateY(-12px) scale(1.02);
          transform: translateY(-12px) scale(1.02);
  -webkit-box-shadow: 0 16px 32px rgba(47, 93, 59, 0.2);
          box-shadow: 0 16px 32px rgba(47, 93, 59, 0.2);
}
.product-card:hover::before {
  opacity: 1;
}
.product-card:hover .product-card:hover__image {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.product-card:hover .product-card:hover__badge {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #5E8C61;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .product-card {
    width: 100%;
    height: auto;
    min-height: 520px;
  }
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  padding: 24px;
  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;
  background-color: #FFFFFF;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .product-card__image-wrapper {
    height: 300px;
    padding: 20px;
  }
}
.product-card__image-wrapper picture {
  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: 95%;
  height: 95%;
}
.product-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background-color: #F7F4EC;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  font-size: 0.75rem;
  color: #5E8C61;
  border-radius: 8px;
  text-transform: lowercase;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .product-card__badge {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.product-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .product-card__content {
    padding: 1.5rem;
  }
}
.product-card__title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #4D4D4D;
  margin: 0;
}
@media (max-width: 1023px) {
  .product-card__title {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  .product-card__title {
    font-size: 1.25rem;
  }
}
.product-card__subtitle {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 1rem;
  line-height: 1.4;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .product-card__subtitle {
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .product-card__subtitle {
    font-size: 0.875rem;
  }
}
.product-card__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4D4D4D;
  margin: 0 0 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .product-card__description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .product-card__description {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
.product-card__button {
  position: relative;
  width: 100%;
  margin-top: auto;
  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;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #2F5D3B;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-card__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #5E8C61;
  -webkit-transition: left 0.4s ease;
  transition: left 0.4s ease;
  z-index: -1;
}
.product-card__button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 16px rgba(47, 93, 59, 0.3);
          box-shadow: 0 8px 16px rgba(47, 93, 59, 0.3);
}
.product-card__button:hover::before {
  left: 0;
}
.product-card__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.product-card__button span {
  font-size: 1rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.product-card__amazon-icon {
  width: 48px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.testimonials {
  position: relative;
  padding: 3rem 0;
  background-color: #EAEEE2;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .testimonials {
    padding: 4rem 0;
  }
}
@media (min-width: 1440px) {
  .testimonials {
    padding: 5rem 0;
  }
}
.testimonials__container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1440px) {
  .testimonials__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto minmax(0, 1fr);
    grid-template-columns: auto minmax(0, 1fr);
    -webkit-column-gap: 52px;
       -moz-column-gap: 52px;
            column-gap: 52px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.testimonials__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.75rem;
  color: #2F5D3B;
  letter-spacing: 0.05em;
}
.testimonials__section-title::before, .testimonials__section-title::after {
  content: "";
  width: 2px;
  height: 170px;
  background-color: #2F5D3B;
}
@media (max-width: 1023px) {
  .testimonials__section-title {
    font-size: 2.75rem;
    gap: 1.25rem;
  }
  .testimonials__section-title::before, .testimonials__section-title::after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .testimonials__section-title {
    font-size: 1.2rem;
    gap: 1rem;
  }
  .testimonials__section-title::before, .testimonials__section-title::after {
    width: 1.5px;
    height: 80px;
  }
}
@media (max-width: 1439px) {
  .testimonials__section-title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    text-align: center;
    margin: 0 0 2rem 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .testimonials__section-title::before, .testimonials__section-title::after {
    display: block;
    width: 60px;
    height: 2px;
  }
}
.testimonials__content {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1024px) {
  .testimonials__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem 2rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__content {
    gap: 3rem 2rem;
  }
}
.testimonials__intro {
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 1024px) {
  .testimonials__intro {
    grid-column: 1/-1;
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .testimonials__intro {
    -ms-grid-column: 3;
    -ms-grid-column-span: 8;
    grid-column: 3/11;
    margin-bottom: 4.6875rem;
  }
}
.testimonials__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  color: #4D4D4D;
  color: #2F5D3B;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.2;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 1024px) {
  .testimonials__heading {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.testimonials__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #5E8C61;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 1024px) {
  .testimonials__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 1440px) {
  .testimonials__description {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
.testimonials__slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  margin: 0 calc(-1 * clamp(16px, 6vw, 20px));
  width: calc(100% + 2 * clamp(16px, 6vw, 20px));
}
@media (min-width: 1024px) {
  .testimonials__slider-wrapper {
    margin: 0;
    width: 100%;
    grid-column: 1/-1;
  }
}
@media (min-width: 1440px) {
  .testimonials__slider-wrapper {
    grid-column: 3/-1;
  }
}
.testimonials__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem clamp(16px, 6vw, 20px) 1.5rem;
}
@media (min-width: 1024px) {
  .testimonials__slider {
    padding: 1rem 0 1.5rem 0;
  }
}
@media (min-width: 1440px) {
  .testimonials__slider {
    padding: 1.5rem 0 2rem 0;
  }
}
.testimonials__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.testimonials__slider .swiper-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.testimonials__arrow {
  position: absolute;
  border: none;
  background-color: #FFFFFF;
  border-radius: 50%;
  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;
  cursor: pointer;
  z-index: 10;
  color: #5E8C61;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: auto;
  bottom: calc(100% - 1rem);
  width: 40px;
  height: 40px;
}
.testimonials__arrow svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.testimonials__arrow::after {
  display: none;
}
.testimonials__arrow--prev {
  right: 3rem;
}
.testimonials__arrow--next {
  right: 0;
}
.testimonials__arrow:hover:not(.testimonials__arrow--disabled) {
  background-color: #5E8C61;
  color: #FFFFFF;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.testimonials__arrow:active:not(.testimonials__arrow--disabled) {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.testimonials__arrow.swiper-button-disabled, .testimonials__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: not-allowed;
}
@media (min-width: 1024px) {
  .testimonials__arrow {
    top: -3.5rem;
    bottom: auto;
  }
  .testimonials__arrow--prev {
    right: 3.5rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__arrow {
    top: -4.5rem;
    width: 48px;
    height: 48px;
  }
  .testimonials__arrow svg {
    width: 28px;
    height: 28px;
  }
  .testimonials__arrow--prev {
    right: 6rem;
  }
}
.testimonials__decor {
  position: absolute;
  width: 400px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media (min-width: 1440px) {
  .testimonials__decor {
    display: block;
  }
  .testimonials__decor--left {
    top: 50%;
    left: -200px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .testimonials__decor--right {
    top: 50%;
    right: -200px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 1920px) {
  .testimonials__decor--left {
    left: -120px;
    width: 320px;
  }
  .testimonials__decor--right {
    right: -120px;
    width: 320px;
  }
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  min-height: 220px;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .testimonial-card {
    padding: 2rem;
    min-height: 260px;
    gap: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .testimonial-card {
    padding: 2.5rem;
    min-height: 280px;
  }
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(94, 140, 97, 0.08) 0%, transparent 70%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.testimonial-card:hover {
  -webkit-transform: translateY(-12px);
          transform: translateY(-12px);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08), 0 12px 24px rgba(0, 0, 0, 0.15);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-card:hover .testimonial-card:hover__quote {
  -webkit-transform: scale(1.15) rotate(-8deg);
          transform: scale(1.15) rotate(-8deg);
}
.testimonial-card:hover .testimonial-card:hover__avatar {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-box-shadow: 0 6px 16px rgba(94, 140, 97, 0.4);
          box-shadow: 0 6px 16px rgba(94, 140, 97, 0.4);
}
.testimonial-card__quote {
  width: 32px;
  height: 32px;
  display: block;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.testimonial-card__text {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
  color: #5E8C61;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
}
@media (min-width: 1440px) {
  .testimonial-card__text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.testimonial-card__author {
  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;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.testimonial-card__name {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: #4D4D4D;
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .testimonial-card__name {
    font-size: 1.0625rem;
  }
}
@media (min-width: 1440px) {
  .testimonial-card__name {
    font-size: 1.125rem;
  }
}
.testimonial-card__avatar {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 48px;
  height: 48px;
}
@media (min-width: 1024px) {
  .testimonial-card__avatar {
    width: 56px;
    height: 56px;
  }
}

.faq {
  position: relative;
  padding: 5rem 0;
  background-color: #F7F4EC;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .faq {
    padding: 4rem 0;
  }
}
.faq__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1439px) {
  .faq__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.faq__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.75rem;
  color: #2F5D3B;
  letter-spacing: 0.05em;
}
.faq__section-title::before, .faq__section-title::after {
  content: "";
  width: 2px;
  height: 170px;
  background-color: #2F5D3B;
}
@media (max-width: 1023px) {
  .faq__section-title {
    font-size: 2.75rem;
    gap: 1.25rem;
  }
  .faq__section-title::before, .faq__section-title::after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .faq__section-title {
    font-size: 1.2rem;
    gap: 1rem;
  }
  .faq__section-title::before, .faq__section-title::after {
    width: 1.5px;
    height: 80px;
  }
}
.faq__section-title {
  margin: 0;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1439px) {
  .faq__section-title {
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.5rem;
  }
  .faq__section-title::before, .faq__section-title::after {
    width: 80px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .faq__section-title {
    font-size: 1.875rem;
  }
  .faq__section-title::before, .faq__section-title::after {
    width: 70px;
    height: 1.5px;
  }
}
.faq__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 1023px) {
  .faq__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.faq__intro {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}
@media (max-width: 1023px) {
  .faq__intro {
    grid-column: 1/-1;
  }
}
.faq__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  color: #4D4D4D;
  color: #2F5D3B;
  margin: 0 0 1.5rem;
}
@media (max-width: 1023px) {
  .faq__heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .faq__heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.faq__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .faq__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .faq__description {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.faq__list {
  position: relative;
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .faq__list {
    grid-column: 1/-1;
  }
}
.faq__decor {
  position: absolute;
  top: 50%;
  right: -200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 400px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1439px) {
  .faq__decor {
    right: -120px;
    width: 320px;
  }
}
@media (max-width: 1023px) {
  .faq__decor {
    display: none;
  }
}
.faq__item {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.faq__item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq__item.is-active .faq__icon-vertical {
  opacity: 0;
}
.faq__question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  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;
  gap: 1.5rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 1023px) {
  .faq__question {
    padding: 1.25rem 1.5rem;
  }
}
.faq__question span {
  font-family: "Cormorant Garamond", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #2F5D3B;
  font-weight: 500;
  font-variation-settings: "wght" 500;
}
@media (max-width: 1023px) {
  .faq__question span {
    font-size: 1.3125rem;
  }
}
@media (max-width: 767px) {
  .faq__question span {
    font-size: 1.125rem;
  }
}
.faq__question:hover {
  background-color: rgba(94, 140, 97, 0.05);
}
.faq__question:focus-visible {
  outline: 2px solid #5E8C61;
  outline-offset: -2px;
}
.faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #5E8C61;
}
@media (max-width: 1023px) {
  .faq__icon {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 767px) {
  .faq__icon {
    width: 20px;
    height: 20px;
  }
}
.faq__icon-horizontal, .faq__icon-vertical {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq__icon-vertical {
  opacity: 1;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__answer-inner {
  padding: 0 2rem 1.5rem 2rem;
}
@media (max-width: 1023px) {
  .faq__answer-inner {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}
.faq__answer-inner p {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 1rem;
  line-height: 1.6;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .faq__answer-inner p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }
}
@media (max-width: 767px) {
  .faq__answer-inner p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.contact {
  position: relative;
  padding: 5rem 0;
  background-color: #E3F2E1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-column-gap: 52px;
     -moz-column-gap: 52px;
          column-gap: 52px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1439px) {
  .contact__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contact__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.75rem;
  color: #2F5D3B;
  letter-spacing: 0.05em;
}
.contact__section-title::before, .contact__section-title::after {
  content: "";
  width: 2px;
  height: 170px;
  background-color: #2F5D3B;
}
@media (max-width: 1023px) {
  .contact__section-title {
    font-size: 2.75rem;
    gap: 1.25rem;
  }
  .contact__section-title::before, .contact__section-title::after {
    height: 120px;
  }
}
@media (max-width: 767px) {
  .contact__section-title {
    font-size: 1.2rem;
    gap: 1rem;
  }
  .contact__section-title::before, .contact__section-title::after {
    width: 1.5px;
    height: 80px;
  }
}
.contact__section-title {
  margin: 0;
  -ms-grid-column-align: start;
      justify-self: start;
}
@media (max-width: 1439px) {
  .contact__section-title {
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-transform: none;
            transform: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 2.5rem;
  }
  .contact__section-title::before, .contact__section-title::after {
    width: 80px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .contact__section-title {
    font-size: 1.875rem;
  }
  .contact__section-title::before, .contact__section-title::after {
    width: 70px;
    height: 1.5px;
  }
}
.contact__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 1023px) {
  .contact__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact__intro {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}
@media (max-width: 1023px) {
  .contact__intro {
    grid-column: 1/-1;
  }
}
.contact__heading {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  color: #4D4D4D;
  color: #2F5D3B;
  margin: 0 0 1.5rem;
}
@media (max-width: 1023px) {
  .contact__heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .contact__heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
.contact__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #5E8C61;
  margin: 0;
}
@media (max-width: 1023px) {
  .contact__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact__description {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
.contact__form-wrapper {
  -ms-grid-column: 3;
  -ms-grid-column-span: 8;
  grid-column: 3/11;
}
@media (max-width: 1023px) {
  .contact__form-wrapper {
    grid-column: 1/-1;
  }
}
.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: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
}
@media (max-width: 1023px) {
  .contact__form {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .contact__form {
    padding: 1.5rem;
  }
}
.contact__field {
  position: relative;
}
.contact__label {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  background-color: #FFFFFF;
  padding: 0 0.5rem;
  font-family: "Cormorant Garamond", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #2F5D3B;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  z-index: 1;
}
@media (max-width: 1023px) {
  .contact__label {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .contact__label {
    font-size: 1rem;
    top: -0.625rem;
  }
}
.contact__input, .contact__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid #5E8C61;
  border-radius: 5px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  color: #4D4D4D;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .contact__input, .contact__textarea {
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
  }
}
.contact__input::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
  color: #5E8C61;
  font-size: 1rem;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #5E8C61;
  font-size: 1rem;
}
.contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: #5E8C61;
  font-size: 1rem;
}
.contact__input::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
  color: #5E8C61;
  font-size: 1rem;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: #5E8C61;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .contact__input::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  .contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
    font-size: 0.875rem;
  }
  .contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .contact__input::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .contact__input::placeholder, .contact__textarea::placeholder {
    font-size: 0.875rem;
  }
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  border-color: #2F5D3B;
  -webkit-box-shadow: 0 0 0 3px rgba(94, 140, 97, 0.1);
          box-shadow: 0 0 0 3px rgba(94, 140, 97, 0.1);
}
.contact__input:hover:not(:focus), .contact__textarea:hover:not(:focus) {
  border-color: #2F5D3B;
}
.contact__textarea {
  resize: none;
  min-height: 150px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.contact__captcha {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .contact__captcha {
    margin-top: 0.75rem;
  }
  .contact__captcha .cf-turnstile {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
.contact__footer {
  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;
  gap: 2rem;
  margin-top: 1rem;
  padding-right: 150px;
}
@media (max-width: 767px) {
  .contact__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
    padding-right: 0;
  }
}
.contact__privacy {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(77, 77, 77, 0.7);
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .contact__privacy {
    font-size: 0.8125rem;
  }
}
.contact__submit {
  position: relative;
  padding: 1rem 2.5rem;
  background-color: #5E8C61;
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__submit::after {
  content: "";
  position: absolute;
  left: calc(100% + 29px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background-color: #5E8C61;
}
@media (max-width: 767px) {
  .contact__submit::after {
    display: none;
  }
}
.contact__submit:hover {
  background-color: #2F5D3B;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(94, 140, 97, 0.3);
          box-shadow: 0 4px 12px rgba(94, 140, 97, 0.3);
}
.contact__submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.contact__submit:focus-visible {
  outline: 2px solid #5E8C61;
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .contact__submit {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

.footer {
  background-color: #E3F2E1;
  color: #4D4D4D;
  padding: 3rem 0 2rem;
}
@media (max-width: 1023px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
}
.footer__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: 2.5rem;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 1439px) {
  .footer__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
}
.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.footer__logo-img {
  display: block;
  width: 160px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  .footer__logo-img {
    width: 140px;
  }
}
@media (max-width: 767px) {
  .footer__logo-img {
    width: 120px;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75rem;
  }
}
.footer__contact-link {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2F5D3B;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__contact-link:hover {
  color: #5E8C61;
}
.footer__credits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .footer__credits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.75rem;
  }
}
.footer__made {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2F5D3B;
}
.footer__heart {
  display: inline-block;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite;
          animation: heartbeat 1.5s ease-in-out infinite;
}
.footer__author {
  color: #5E8C61;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__author:hover {
  color: #2F5D3B;
  text-decoration: underline;
}
.footer__privacy-link {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #2F5D3B;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__privacy-link:hover {
  color: #5E8C61;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .footer__bottom {
    text-align: center;
  }
}
.footer__copyright {
  font-family: "Cormorant Garamond", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #2F5D3B;
  margin: 0;
}
.footer__developer {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.footer__developer a {
  color: #5E8C61;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__developer a:hover {
  color: #2F5D3B;
  text-decoration: underline;
}

@-webkit-keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heartbeat {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  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;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal.is-open .modal__container {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 93, 59, 0.75);
  cursor: pointer;
}
.modal__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #FFFFFF;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .modal__container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}
.modal__header {
  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;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(94, 140, 97, 0.1);
}
@media (max-width: 767px) {
  .modal__header {
    padding: 1.25rem 1.25rem 0.75rem;
  }
}
.modal__title {
  font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.2;
  color: #4D4D4D;
  font-size: 1.75rem;
  margin: 0;
  color: #2F5D3B;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 1.5rem;
  }
}
.modal__close {
  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;
  padding: 0;
  border: none;
  background: transparent;
  color: #5E8C61;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal__close:hover {
  background-color: rgba(94, 140, 97, 0.1);
  color: #2F5D3B;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.modal__close:active {
  -webkit-transform: rotate(90deg) scale(0.95);
          transform: rotate(90deg) scale(0.95);
}
.modal__close svg {
  width: 24px;
  height: 24px;
}
.modal__body {
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .modal__body {
    padding: 1.25rem;
  }
}
.modal__description {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #5E8C61;
  margin: 0 0 1.5rem;
}
@media (max-width: 767px) {
  .modal__description {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
.modal__form .contact__field {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .modal__form .contact__field {
    margin-bottom: 0.75rem;
  }
}
.modal__form .contact__label {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
@media (max-width: 767px) {
  .modal__form .contact__label {
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
  }
}
.modal__form .contact__input {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .modal__form .contact__input {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.modal__form .contact__textarea {
  min-height: 100px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  resize: vertical;
}
@media (max-width: 767px) {
  .modal__form .contact__textarea {
    min-height: 70px;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }
}
.modal__form .contact__footer {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-right: 0;
  border-top: 1px solid rgba(94, 140, 97, 0.1);
  padding-top: 1.25rem;
}
@media (max-width: 767px) {
  .modal__form .contact__footer {
    margin-top: 0.875rem;
    gap: 0.75rem;
    padding-top: 0.875rem;
  }
}
.modal__form .contact__privacy {
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  color: rgba(77, 77, 77, 0.65);
}
@media (max-width: 767px) {
  .modal__form .contact__privacy {
    font-size: 0.6875rem;
    line-height: 1.3;
  }
}
.modal__form .contact__submit {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__form .contact__submit::after {
  display: none;
}
@media (max-width: 767px) {
  .modal__form .contact__submit {
    padding: 0.6875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0);
}

.privacy-policy {
  padding: 8rem 0 5rem;
  background-color: #FFFFFF;
}
@media (max-width: 1023px) {
  .privacy-policy {
    padding: 6rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .privacy-policy {
    padding: 5rem 0 3rem;
  }
}
.privacy-policy__container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-policy__title {
  font-family: "DM Serif Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #5E8C61;
  text-align: center;
}
@media (max-width: 1023px) {
  .privacy-policy__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .privacy-policy__title {
    font-size: 2rem;
  }
}
.privacy-policy__updated {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  font-size: 0.9375rem;
  color: rgba(77, 77, 77, 0.6);
  text-align: center;
  margin: 0 0 3rem;
  font-style: italic;
}
@media (max-width: 767px) {
  .privacy-policy__updated {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
.privacy-policy__section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(94, 140, 97, 0.1);
}
@media (max-width: 767px) {
  .privacy-policy__section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}
.privacy-policy__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-policy__section--summary {
  background: linear-gradient(135deg, rgba(94, 140, 97, 0.05), rgba(94, 140, 97, 0.02));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(94, 140, 97, 0.15);
}
@media (max-width: 767px) {
  .privacy-policy__section--summary {
    padding: 1.5rem;
  }
}
.privacy-policy__section--summary ul {
  margin-bottom: 0;
}
.privacy-policy__section--summary li {
  font-size: 1rem;
  font-weight: 500;
  color: #4D4D4D;
}
.privacy-policy__section h2 {
  font-family: "DM Serif Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: #5E8C61;
}
@media (max-width: 1023px) {
  .privacy-policy__section h2 {
    font-size: 1.625rem;
  }
}
@media (max-width: 767px) {
  .privacy-policy__section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.privacy-policy__section h3 {
  font-family: "DM Serif Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 2rem 0 1rem;
  color: #4D4D4D;
}
@media (max-width: 1023px) {
  .privacy-policy__section h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .privacy-policy__section h3 {
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem;
  }
}
.privacy-policy__section h3:first-child {
  margin-top: 0;
}
.privacy-policy__section p {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  color: rgba(77, 77, 77, 0.85);
}
@media (max-width: 767px) {
  .privacy-policy__section p {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
}
.privacy-policy__section p:last-child {
  margin-bottom: 0;
}
.privacy-policy__section p strong {
  font-weight: 600;
  color: #4D4D4D;
}
.privacy-policy__section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding: 0;
  list-style-position: outside;
}
@media (max-width: 767px) {
  .privacy-policy__section ul {
    margin-left: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.privacy-policy__section ul li {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  color: rgba(77, 77, 77, 0.85);
  padding-left: 0.5rem;
}
@media (max-width: 767px) {
  .privacy-policy__section ul li {
    font-size: 0.9375rem;
    margin-bottom: 0.625rem;
  }
}
.privacy-policy__section ul li:last-child {
  margin-bottom: 0;
}
.privacy-policy__section ul li strong {
  font-weight: 600;
  color: #4D4D4D;
}
.privacy-policy__section ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  list-style-type: circle;
}
.privacy-policy__section a {
  color: #5E8C61;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.privacy-policy__section a:hover, .privacy-policy__section a:focus {
  color: rgb(73.5128205128, 109.4871794872, 75.858974359);
  border-bottom-color: currentColor;
}
.privacy-policy__section a[target=_blank]::after {
  content: " ↗";
  font-size: 0.85em;
  vertical-align: super;
}
.privacy-policy__contact {
  background: rgba(94, 140, 97, 0.04);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #5E8C61;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  .privacy-policy__contact {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }
}
.privacy-policy__contact p {
  margin: 0;
}
.privacy-policy__contact p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.privacy-policy__contact a {
  word-break: break-word;
}