* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

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

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@font-face {
  font-family: "Open Sans";
  src: url("/fonts/subset-OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("/fonts/subset-OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/subset-Merriweather-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Merriweather";
  src: url("/fonts/subset-Merriweather-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 335px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.title {
  font-family: "Merriweather", serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #5a8f4b;
  position: relative;
  padding-bottom: 10px;
}
.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4ac0d;
  margin: 10px auto 0;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 44px;
  }
}

.btn {
  display: inline-block;
  background-color: #5a8f4b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #456e39;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: "Merriweather", serif;
  font-size: 24px;
  font-weight: 700;
  color: #5a8f4b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__logo:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 28px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
.header__menu-item {
  position: relative;
}
.header__menu-link {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #5a8f4b;
}
.header__menu-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #5a8f4b;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}
.header__menu-link:hover::after {
  width: 100%;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #5a8f4b;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active .header__burger-line:nth-child(1) {
  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) {
  transform: translateY(-10px) rotate(-45deg);
}
.header .header__nav.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease-out;
  z-index: 90;
}
.header .header__nav.active .header__menu {
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.header .header__nav.active .header__menu-link {
  font-size: 28px;
  color: #5a8f4b;
}
.header .header__nav.active .header__menu-link:hover {
  color: #3a5d31;
}
.header .header__nav.active .header__menu-link::after {
  background-color: #d4ac0d;
}

.hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__wrapper {
  animation: fadeIn 1s ease-out;
}
.hero__title {
  font-family: "Merriweather", serif;
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: slideInUp 0.8s ease-out;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 68px;
  }
}
.hero__text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 20px;
  }
}
.hero .btn {
  animation: pulse 2s infinite ease-in-out;
}

.features,
.stats,
.services,
.about,
.steps,
.testimonials {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.features:nth-child(even),
.stats:nth-child(even),
.services:nth-child(even),
.about:nth-child(even),
.steps:nth-child(even),
.testimonials:nth-child(even) {
  background-color: #fff;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .features__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.features__list-item {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.6s ease-out backwards;
}
.features__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.features__list-item:nth-child(2) {
  animation-delay: 0.2s;
}
.features__list-item:nth-child(3) {
  animation-delay: 0.3s;
}
.features__list-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .features__list-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .features__list-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}
.features__item-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}
.features__list-item:hover .features__item-icon {
  transform: rotateY(180deg);
}
.features__item-title {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: #5a8f4b;
  margin-bottom: 10px;
}
.features__item-text {
  font-size: 16px;
  color: #333;
}

.stats {
  text-align: center;
}
.stats__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .stats__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.stats__list-item {
  background-color: #f7e7c2;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.8s ease-out backwards;
}
.stats__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stats__list-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stats__list-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stats__list-item:nth-child(4) {
  animation-delay: 0.4s;
}
@media (min-width: 768px) {
  .stats__list-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .stats__list-item {
    flex: 1 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
.stats__item-title {
  font-family: "Merriweather", serif;
  font-size: 40px;
  color: #5a8f4b;
  margin-bottom: 5px;
  background: linear-gradient(45deg, #5a8f4b, #3a5d31);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__item-text {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .services__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.services__list-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: slideInUp 0.7s ease-out backwards;
}
.services__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.services__list-item:nth-child(2) {
  animation-delay: 0.2s;
}
.services__list-item:nth-child(3) {
  animation-delay: 0.3s;
}
.services__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #5a8f4b;
}
@media (min-width: 768px) {
  .services__list-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .services__list-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}
.services__item-title {
  font-family: "Merriweather", serif;
  font-size: 24px;
  color: #5a8f4b;
  margin-bottom: 15px;
}
.services__item-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
.services__item-link {
  color: #d4ac0d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.services__item-link:hover {
  color: #8c7209;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.about__content {
  flex: 1;
  animation: fadeIn 0.8s ease-out;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about__list-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about__list-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.about__item-title {
  font-family: "Merriweather", serif;
  font-size: 20px;
  color: #5a8f4b;
  margin-bottom: 8px;
}
.about__item-text {
  font-size: 16px;
  color: #333;
}
.about__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInUp 0.9s ease-out;
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .steps__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.steps__list-item {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 0.7s ease-out backwards;
}
.steps__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.steps__list-item:nth-child(2) {
  animation-delay: 0.2s;
}
.steps__list-item:nth-child(3) {
  animation-delay: 0.3s;
}
.steps__list-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .steps__list-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media (min-width: 1024px) {
  .steps__list-item {
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
  }
}
.steps__item-nnumber-bg {
  width: 60px;
  height: 60px;
  background-color: #d4ac0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.steps__list-item:hover .steps__item-nnumber-bg {
  background-color: #a4850a;
}
.steps__item-number {
  font-family: "Merriweather", serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.steps__item-title {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: #5a8f4b;
  margin-bottom: 10px;
}
.steps__item-text {
  font-size: 16px;
  color: #333;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonials__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.testimonials__list-item {
  background-color: #f7e7c2;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.8s ease-out backwards;
}
.testimonials__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonials__list-item:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonials__list-item:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonials__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .testimonials__list-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .testimonials__list-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}
.testimonials__item-text {
  font-style: italic;
  font-size: 17px;
  color: #333;
  margin-bottom: 15px;
}
.testimonials__item-author {
  display: block;
  font-weight: 600;
  color: #5a8f4b;
  text-align: right;
}

.page-about {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.page-about:nth-of-type(even) {
  background-color: #fff;
}
.page-about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-about__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-about__wrapper:nth-of-type(odd) .page-about__img-wrapper {
    order: 2;
  }
  .page-about__wrapper:nth-of-type(odd) .page-about__content {
    order: 1;
  }
}
.page-about__content {
  flex: 1;
  animation: fadeIn 0.8s ease-out;
}
.page-about__title {
  font-family: "Merriweather", serif;
  font-size: 28px;
  color: #5a8f4b;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}
.page-about__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4ac0d;
  margin: 10px auto 0;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .page-about__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .page-about__title {
    font-size: 44px;
    text-align: left;
  }
  .page-about__title::after {
    margin: 10px 0 0 0;
  }
}
.page-about__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-about__text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: center;
}
.page-about__text strong {
  color: #5a8f4b;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .page-about__text {
    font-size: 17px;
    text-align: left;
  }
}
.page-about__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInUp 0.9s ease-out;
}
.page-about__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-services {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.page-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-services__list-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out backwards;
}
.page-services__list-item:nth-child(1) {
  animation-delay: 0.1s;
}
.page-services__list-item:nth-child(2) {
  animation-delay: 0.3s;
}
.page-services__list-item:nth-child(3) {
  animation-delay: 0.5s;
}
@media (min-width: 1024px) {
  .page-services__list-item {
    flex-direction: row;
    align-items: center;
  }
  .page-services__list-item:nth-child(even) .page-services__content {
    order: 2;
  }
  .page-services__list-item:nth-child(even) .page-services__img-wrapper {
    order: 1;
  }
}
.page-services__content {
  flex: 1;
}
.page-services__title {
  font-family: "Merriweather", serif;
  font-size: 26px;
  color: #5a8f4b;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}
.page-services__title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #d4ac0d;
  margin: 10px auto 0;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .page-services__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .page-services__title {
    text-align: left;
    margin-bottom: 25px;
  }
  .page-services__title::after {
    margin: 10px 0 0 0;
  }
}
.page-services__description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.page-services__text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-services__text {
    font-size: 17px;
    text-align: left;
  }
}
.page-services__link {
  display: inline-block;
  color: #d4ac0d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-services__link {
    text-align: left;
  }
}
.page-services__link:hover {
  color: #8c7209;
  transform: translateX(5px);
}
.page-services__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-services__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta {
  padding: 80px 0;
  background-color: #5a8f4b;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta__wrapper {
  animation: fadeIn 1s ease-out;
}
.cta__title {
  font-family: "Merriweather", serif;
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  animation: slideInUp 0.8s ease-out;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 48px;
  }
}
.cta__text {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  animation: slideInUp 1s ease-out;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 20px;
  }
}
.cta__link {
  display: inline-block;
  background-color: #d4ac0d;
  color: #333;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
}
.cta__link:hover {
  background-color: #a4850a;
  transform: translateY(-3px);
}
.cta__link:active {
  transform: translateY(0);
}

.contact {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}
.contact__title {
  font-family: "Merriweather", serif;
  font-size: 28px;
  color: #5a8f4b;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.contact__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4ac0d;
  margin: 10px auto 0;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .contact__title {
    font-size: 44px;
  }
}
.contact__text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 17px;
  }
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  text-align: left;
}
@media (min-width: 768px) {
  .contact__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: none;
  }
}
@media (min-width: 1024px) {
  .contact__list {
    gap: 40px;
  }
}
.contact__list-item {
  font-size: 16px;
  color: #333;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.contact__list-item strong {
  color: #5a8f4b;
  font-weight: 700;
}
.contact__list-item:hover {
  transform: translateY(-5px);
}
@media (min-width: 768px) {
  .contact__list-item {
    flex: 1 1 calc(50% - 25px);
    max-width: calc(50% - 25px);
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .contact__list-item {
    flex: 1 1 auto;
    max-width: none;
  }
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-out;
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
    gap: 30px;
  }
}
.contact__form-field {
  flex: 1;
  text-align: left;
}
.contact__form-label {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #5a8f4b;
  box-shadow: 0 0 0 3px rgba(90, 143, 75, 0.2);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-button {
  display: block;
  width: 100%;
  background-color: #5a8f4b;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.contact__form-button:hover {
  background-color: #456e39;
  transform: translateY(-2px);
}
.contact__form-button:active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .contact__form-button {
    width: auto;
    margin: 0 auto;
    padding: 15px 40px;
  }
}
.contact__form-status {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #5a8f4b;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0 20px;
  font-size: 15px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    flex-wrap: nowrap;
  }
}
.footer__block {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .footer__block {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (min-width: 1024px) {
  .footer__block {
    flex: 1;
  }
}
.footer__logo {
  font-family: "Merriweather", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}
.footer__logo:hover {
  color: #f7e7c2;
}
.footer__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
.footer__title {
  font-family: "Merriweather", serif;
  font-size: 18px;
  color: #d4ac0d;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #f7e7c2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #f7e7c2;
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-item a:hover {
  color: #f7e7c2;
}
.footer__copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.legal {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.legal__header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease-out;
}
.legal__title {
  font-family: "Merriweather", serif;
  font-size: 32px;
  color: #5a8f4b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .legal__title {
    font-size: 50px;
  }
}
.legal__last-updated {
  font-size: 16px;
  color: #333;
  font-style: italic;
}
.legal__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.legal__section {
  margin-bottom: 40px;
  animation: slideInUp 0.7s ease-out backwards;
}
.legal__section:nth-child(1) {
  animation-delay: 0.1s;
}
.legal__section:nth-child(2) {
  animation-delay: 0.2s;
}
.legal__section:nth-child(3) {
  animation-delay: 0.3s;
}
.legal__section:nth-child(4) {
  animation-delay: 0.4s;
}
.legal__section:nth-child(5) {
  animation-delay: 0.5s;
}
.legal__section:nth-child(6) {
  animation-delay: 0.6s;
}
.legal__section:nth-child(7) {
  animation-delay: 0.7s;
}
.legal__section:nth-child(8) {
  animation-delay: 0.8s;
}
.legal__heading {
  font-family: "Merriweather", serif;
  font-size: 24px;
  color: #5a8f4b;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f7e7c2;
}
@media (min-width: 768px) {
  .legal__heading {
    font-size: 28px;
  }
}
.legal__paragraph {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}
.legal__paragraph a {
  color: #d4ac0d;
  text-decoration: none;
}
.legal__paragraph a:hover {
  text-decoration: underline;
}
.legal__paragraph strong {
  font-weight: 700;
  color: #4f7e42;
}
.legal__list {
  margin: 0 0 15px 20px;
  padding: 0;
}
.legal__list-item {
  list-style: disc;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal__sub-heading {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #5a8f4b;
  margin-top: 25px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__sub-heading {
    font-size: 20px;
  }
}
.legal__contact-info {
  margin-top: 30px;
  text-align: center;
}
.legal__contact-info p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
.legal__contact-info a {
  color: #d4ac0d;
  text-decoration: none;
  font-weight: 600;
}
.legal__contact-info a:hover {
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 500px;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  animation: fadeInUp 0.6s ease-out forwards;
}
@media (min-width: 768px) {
  .cookie-consent {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 30px;
    max-width: 700px;
  }
}
.cookie-consent__text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  text-align: center;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .cookie-consent__text {
    text-align: left;
    padding-right: 20px;
  }
}
.cookie-consent__text a {
  color: #d4ac0d;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}
.cookie-consent__text a:hover {
  color: #a4850a;
}
.cookie-consent__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .cookie-consent__buttons {
    flex-direction: row;
    flex-shrink: 0;
  }
}
.cookie-consent__button {
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.cookie-consent__button--accept {
  background-color: #5a8f4b;
  color: #fff;
  border: 2px solid #5a8f4b;
}
.cookie-consent__button--accept:hover {
  background-color: #49743d;
  transform: translateY(-2px);
}
.cookie-consent__button--decline {
  background-color: transparent;
  color: #5a8f4b;
  border: 2px solid #5a8f4b;
}
.cookie-consent__button--decline:hover {
  background-color: rgba(90, 143, 75, 0.1);
  color: #4f7e42;
  transform: translateY(-2px);
}
.cookie-consent__button--settings {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}
.cookie-consent__button--settings:hover {
  background-color: rgba(51, 51, 51, 0.1);
  color: #262626;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}