@charset "UTF-8";
* {
  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;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #36454f;
  line-height: 1.6;
  background-color: #f0fff0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #6b8e23;
  margin-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: #6b8e23;
  transition: color 0.3s ease;
}
a:hover {
  color: #3d5114;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background-color: #f0fff0;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  max-width: 150px;
}
.header__logo svg {
  width: 100%;
  height: auto;
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__item {
  margin-left: 30px;
}
.header__link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #36454f;
}
.header__link:hover {
  color: #6b8e23;
}

@media (max-width: 767px) {
  .header__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__logo {
    margin-bottom: 15px;
  }
}
.hero {
  padding: 60px 0;
  background-color: white;
}
@media (min-width: 768px) {
  .hero {
    padding: 80px 0;
  }
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .hero__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero__left {
  text-align: center;
}
@media (min-width: 992px) {
  .hero__left {
    text-align: left;
    flex: 1;
  }
}
.hero__title {
  font-size: 2.5em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #36454f;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5em;
  }
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 4em;
  }
}
.hero__title--accent {
  color: #6b8e23;
}
.hero__text {
  font-size: 1.1em;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.2em;
  }
}
.hero__text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.hero__btn {
  display: inline-block;
  background-color: #ffd700;
  color: #36454f;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.hero__btn:hover {
  background-color: #ccac00;
  transform: translateY(-2px);
}
.hero__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about {
  padding: 60px 0;
  background-color: #f0fff0;
}
@media (min-width: 768px) {
  .about {
    padding: 80px 0;
  }
}
.about__head {
  text-align: center;
  margin-bottom: 40px;
}
.about__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 3em;
  }
}
.about__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .about__head-text {
    font-size: 1.2em;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .about__wrapper {
    flex-direction: row;
    gap: 60px;
  }
}
.about__left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.about__right {
  flex: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .about__right {
    text-align: left;
  }
}
.about__title {
  font-size: 2em;
  color: #6b8e23;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 2.5em;
  }
}
.about__text {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #36454f;
}
.about__text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.about__btn {
  display: inline-block;
  background-color: #6b8e23;
  color: #f8f8f8;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}
.about__btn:hover {
  background-color: #4c6519;
  transform: translateY(-2px);
}

.services {
  padding: 60px 0;
  background-color: white;
}
@media (min-width: 768px) {
  .services {
    padding: 80px 0;
  }
}
.services__head {
  text-align: center;
  margin-bottom: 50px;
}
.services__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .services__head-title {
    font-size: 3em;
  }
}
.services__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .services__head-text {
    font-size: 1.2em;
  }
}
.services__head-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.services__item-img {
  max-width: 100%;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.services__item-title {
  font-size: 1.5em;
  color: #6b8e23;
  margin-bottom: 10px;
}
.services__item-text {
  font-size: 1em;
  color: #36454f;
}
.services__item-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.services__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #ffd700;
  color: #36454f;
  padding: 15px 40px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.services__btn:hover {
  background-color: #ccac00;
  transform: translateY(-2px);
}

.prices {
  padding: 60px 0;
  background-color: #f0fff0;
}
@media (min-width: 768px) {
  .prices {
    padding: 80px 0;
  }
}
.prices__head {
  text-align: center;
  margin-bottom: 50px;
}
.prices__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .prices__head-title {
    font-size: 3em;
  }
}
.prices__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .prices__head-text {
    font-size: 1.2em;
  }
}
.prices__head-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.prices__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .prices__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .prices__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.prices__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prices__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.prices__item-title {
  font-size: 1.8em;
  color: #6b8e23;
  margin-bottom: 15px;
}
.prices__item-text {
  font-size: 1em;
  color: #36454f;
  margin-bottom: 20px;
  flex-grow: 1;
}
.prices__item-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.prices__item-price {
  font-family: "Poppins", sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
}
.prices__item-btn {
  display: inline-block;
  background-color: #6b8e23;
  color: #f8f8f8;
  padding: 10px 25px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.prices__item-btn:hover {
  background-color: #4c6519;
  transform: translateY(-2px);
}
.prices__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #ffd700;
  color: #36454f;
  padding: 15px 40px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.prices__btn:hover {
  background-color: #ccac00;
  transform: translateY(-2px);
}

.team {
  padding: 60px 0;
  background-color: white;
}
@media (min-width: 768px) {
  .team {
    padding: 80px 0;
  }
}
.team__head {
  text-align: center;
  margin-bottom: 50px;
}
.team__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .team__head-title {
    font-size: 3em;
  }
}
.team__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .team__head-text {
    font-size: 1.2em;
  }
}
.team__head-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.team__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .team__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .team__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.team__item-info {
  margin-bottom: 15px;
}
.team__item-info-name {
  font-size: 1.6em;
  color: #6b8e23;
  margin-bottom: 5px;
}
.team__item-info-post {
  display: block;
  font-size: 0.9em;
  color: #5f7a8c;
  font-weight: 500;
}
.team__item-text {
  font-size: 1em;
  color: #36454f;
  flex-grow: 1;
}
.team__item-text--accent {
  font-weight: 600;
  color: #6b8e23;
}

.history {
  padding: 60px 0;
  background-color: #f0fff0;
}
@media (min-width: 768px) {
  .history {
    padding: 80px 0;
  }
}
.history__head {
  text-align: center;
  margin-bottom: 50px;
}
.history__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .history__head-title {
    font-size: 3em;
  }
}
.history__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .history__head-text {
    font-size: 1.2em;
  }
}
.history__head-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.history__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .history__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .history__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.history__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.history__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.history__item-img {
  max-width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.history__item-title {
  font-size: 1.5em;
  color: #6b8e23;
  margin-bottom: 10px;
}
.history__item-text {
  font-size: 1em;
  color: #36454f;
  flex-grow: 1;
}
.history__item-text--accent {
  font-weight: 600;
  color: #6b8e23;
}

.testimonials {
  padding: 60px 0;
  background-color: white;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
}
.testimonials__head {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .testimonials__head-title {
    font-size: 3em;
  }
}
.testimonials__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .testimonials__head-text {
    font-size: 1.2em;
  }
}
.testimonials__head-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.testimonials__item-info {
  margin-bottom: 15px;
}
.testimonials__item-info-name {
  font-size: 1.6em;
  color: #6b8e23;
  margin-bottom: 5px;
}
.testimonials__item-info-place {
  display: block;
  font-size: 0.9em;
  color: #5f7a8c;
  font-weight: 500;
}
.testimonials__item-text {
  font-size: 1em;
  color: #36454f;
  flex-grow: 1;
  font-style: italic;
}

.faq {
  padding: 60px 0;
  background-color: #f0fff0;
}
@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
}
.faq__head {
  text-align: center;
  margin-bottom: 50px;
}
.faq__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .faq__head-title {
    font-size: 3em;
  }
}
.faq__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .faq__head-text {
    font-size: 1.2em;
  }
}
.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .faq__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq__item {
  background-color: #f8f8f8;
  border-radius: 8鸣;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.faq__item-title {
  font-size: 1.3em;
  color: #6b8e23;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .faq__item-title {
    font-size: 1.4em;
  }
}
.faq__item-text {
  font-size: 0.95em;
  color: #36454f;
}
@media (min-width: 768px) {
  .faq__item-text {
    font-size: 1em;
  }
}

.contact {
  padding: 60px 0;
  background-color: white;
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__head {
  text-align: center;
  margin-bottom: 50px;
}
.contact__head-title {
  font-size: 2.2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 3em;
  }
}
.contact__head-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #36454f;
}
@media (min-width: 768px) {
  .contact__head-text {
    font-size: 1.2em;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.contact__left {
  flex: 1;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
}
@media (min-width: 768px) {
  .contact__left {
    padding: 40px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
}
.contact__form-wrapper.contact__form-checkbox-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.contact__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  color: #36454f;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus {
  border-color: #6b8e23;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.2);
  outline: none;
}
.contact__form-input::-moz-placeholder {
  color: #98acb9;
}
.contact__form-input::placeholder {
  color: #98acb9;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #6b8e23;
}
.contact__form-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
}
.contact__form-checkbox:checked {
  background-color: #6b8e23;
  border-color: #6b8e23;
}
.contact__form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #f8f8f8;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact__form-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.2);
}
.contact__form-checkbox-text {
  font-size: 0.9em;
  color: #36454f;
}
.contact__form-checkbox-link {
  color: #6b8e23;
  font-weight: 600;
}
.contact__form-checkbox-link:hover {
  text-decoration: underline;
}
.contact__form-btn {
  display: inline-block;
  background-color: #ffd700;
  color: #36454f;
  padding: 12px 30px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}
.contact__form-btn:hover {
  background-color: #ccac00;
  transform: translateY(-2px);
}
.contact__form-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.contact__form-status-wrapper {
  margin-top: 15px;
  text-align: center;
}
.contact__form-status {
  font-size: 1em;
  font-weight: 600;
}
.contact__form-status.success {
  color: #6b8e23;
}
.contact__form-status.error {
  color: red;
}
.contact__right {
  flex: 1;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__right {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .contact__right {
    text-align: left;
    align-items: flex-start;
  }
}
.contact__right-title {
  font-size: 2em;
  color: #6b8e23;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__right-title {
    font-size: 2.5em;
  }
}
.contact__right-text {
  font-size: 1.1em;
  color: #36454f;
  margin-bottom: 30px;
}
.contact__right-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .contact__right-list {
    text-align: left;
  }
}
.contact__right-item {
  margin-bottom: 20px;
}
.contact__right-item:last-child {
  margin-bottom: 0;
}
.contact__right-item-title {
  font-size: 1.2em;
  font-weight: 700;
  color: #6b8e23;
  margin-bottom: 5px;
}
.contact__right-item-text {
  font-size: 1em;
  color: #36454f;
}
.contact__right-item-text--accent {
  font-weight: 600;
  color: #6b8e23;
}
.contact__right-img {
  margin-top: 30px;
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .contact__right-img {
    max-width: 100%;
  }
}

.footer {
  background-color: #4c6519;
  padding: 40px 0 20px;
  color: #f8f8f8;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 50px 0 25px;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
  }
}
.footer__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__block {
    align-items: flex-start;
  }
}
.footer__block svg {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  fill: #f8f8f8;
}
.footer__text {
  font-size: 0.95em;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__text {
    margin: 0;
  }
}
.footer__text strong {
  color: #ffd700;
}
.footer__title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__item {
  margin-bottom: 10px;
}
.footer__item:last-child {
  margin-bottom: 0;
}
.footer__item-link {
  color: #f8f8f8;
  font-size: 0.9em;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  position: relative;
}
.footer__item-link:hover {
  color: #ffd700;
  transform: translateX(5px);
}
.footer__item-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #ffd700;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}
.footer__item-link:hover::after {
  transform: scaleX(1);
}
.footer__copy-wrapper {
  padding-top: 20px;
  border-top: 1px solid rgba(248, 248, 248, 0.2);
  margin-top: 30px;
}
.footer__copy {
  font-size: 0.85em;
  color: rgba(248, 248, 248, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #36454f;
  color: #f8f8f8;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner__text {
  margin: 0;
  font-size: 0.95em;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    flex: 1;
    padding-right: 20px;
  }
}
.cookie-banner__link {
  color: #ffd700;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #ccac00;
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-banner__buttons {
    flex-wrap: nowrap;
  }
}
.cookie-banner__btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-grow: 1;
}
@media (min-width: 576px) {
  .cookie-banner__btn {
    flex-grow: 0;
  }
}
.cookie-banner__btn--accept {
  background-color: #6b8e23;
  color: #f8f8f8;
}
.cookie-banner__btn--accept:hover {
  background-color: #4c6519;
  transform: translateY(-2px);
}
.cookie-banner__btn--decline {
  background-color: #dc3545;
  color: #f8f8f8;
}
.cookie-banner__btn--decline:hover {
  background-color: #bd2130;
  transform: translateY(-2px);
}

.legal {
  padding: 60px 0;
  background-color: #f0fff0;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.legal__title {
  font-size: 2.5em;
  color: #6b8e23;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 3.2em;
  }
}
.legal__subtitle {
  font-size: 1.8em;
  color: #6b8e23;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}
@media (min-width: 768px) {
  .legal__subtitle {
    font-size: 2.2em;
  }
}
.legal__text {
  font-size: 1em;
  line-height: 1.7;
  color: #36454f;
  margin-bottom: 15px;
}
.legal__text:last-of-type {
  margin-bottom: 0;
}
.legal__text strong {
  color: #6b8e23;
}
.legal__list {
  list-style: disc inside;
  margin: 0 0 20px 20px;
  padding: 0;
}
@media (min-width: 768px) {
  .legal__list {
    margin: 0 0 25px 30px;
  }
}
.legal__item {
  font-size: 1em;
  line-height: 1.6;
  color: #36454f;
  margin-bottom: 8px;
}
.legal__item:last-child {
  margin-bottom: 0;
}
.legal__link {
  color: #6b8e23;
  font-weight: 600;
  text-decoration: underline;
}
.legal__link:hover {
  color: #3d5114;
}