* {
  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: "Roboto", sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 300px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}

.header {
  background-color: #79ac39;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  width: 100px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo {
    width: 150px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__list {
  display: flex;
  gap: 20px;
}
.header__item {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.header__item:hover {
  color: #f7d12d;
}
@media (min-width: 1440px) {
  .header__item {
    font-size: 18px;
  }
}
.header__link {
  padding: 5px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  color: #3a5f0b;
  margin-top: 0;
  margin-bottom: 15px;
}

p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

h1 {
  font-size: 28px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}

.hero {
  padding: 40px 0;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding: 80px 0;
  }
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero__wrapper {
    flex-direction: row;
    text-align: left;
  }
}
.hero__left {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__left {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
.hero__title {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #3a5f0b;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 44px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 56px;
  }
}
.hero__title--accent {
  color: #79ac39;
}
.hero__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 18px;
  }
}
.hero__text--accent {
  font-weight: 700;
  color: #79ac39;
}
.hero__btn {
  display: inline-block;
  background-color: #f7d12d;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.hero__btn:hover {
  background-color: #e8be09;
}
.hero__right {
  flex-shrink: 0;
  width: 80%;
}
@media (min-width: 768px) {
  .hero__right {
    flex: 1;
    width: 100%;
    max-width: 450px;
  }
}
.hero__right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about {
  padding: 40px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 80px 0;
  }
}
.about__head {
  text-align: center;
  margin-bottom: 40px;
}
.about__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 36px;
  }
}
.about__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__head-text {
    font-size: 18px;
  }
}
.about__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .about__wrapper {
    flex-direction: row;
  }
}
.about__left {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about__left {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .about__right {
    flex: 1;
  }
}
.about__title {
  font-size: 24px;
  color: #3a5f0b;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 32px;
  }
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 18px;
  }
}
.about__text--accent {
  font-weight: 700;
  color: #79ac39;
}
.about__btn {
  display: inline-block;
  background-color: #f7d12d;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.about__btn:hover {
  background-color: #e8be09;
}

.services {
  padding: 40px 0;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .services {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .services {
    padding: 80px 0;
  }
}
.services__head {
  text-align: center;
  margin-bottom: 40px;
}
.services__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .services__head-title {
    font-size: 36px;
  }
}
.services__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .services__head-text {
    font-size: 18px;
  }
}
.services__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.services__item:hover {
  transform: translateY(-5px);
}
.services__item-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.services__item-title {
  font-size: 20px;
  color: #3a5f0b;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .services__item-title {
    font-size: 24px;
  }
}
.services__item-text {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  padding: 0 25px 25px;
}
@media (min-width: 768px) {
  .services__item-text {
    font-size: 16px;
  }
}
.services__item-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.services__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #f7d12d;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.services__btn:hover {
  background-color: #e8be09;
}

.prices {
  padding: 40px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .prices {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .prices {
    padding: 80px 0;
  }
}
.prices__head {
  text-align: center;
  margin-bottom: 40px;
}
.prices__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .prices__head-title {
    font-size: 36px;
  }
}
.prices__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .prices__head-text {
    font-size: 18px;
  }
}
.prices__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.prices__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .prices__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .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: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.prices__item:hover {
  transform: translateY(-5px);
}
.prices__item-title {
  font-size: 20px;
  color: #3a5f0b;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .prices__item-title {
    font-size: 24px;
  }
}
.prices__item-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .prices__item-text {
    font-size: 16px;
  }
}
.prices__item-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.prices__item-price {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f7d12d;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .prices__item-price {
    font-size: 32px;
  }
}
.prices__item-btn {
  display: inline-block;
  background-color: #79ac39;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.prices__item-btn:hover {
  background-color: #5e862c;
}
.prices__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #f7d12d;
  color: #333333;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.prices__btn:hover {
  background-color: #e8be09;
}

.team {
  padding: 40px 0;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .team {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .team {
    padding: 80px 0;
  }
}
.team__head {
  text-align: center;
  margin-bottom: 40px;
}
.team__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .team__head-title {
    font-size: 36px;
  }
}
.team__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .team__head-text {
    font-size: 18px;
  }
}
.team__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.team__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .team__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .team__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team__item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.team__item:hover {
  transform: translateY(-5px);
}
.team__item-info {
  margin-bottom: 15px;
}
.team__item-info-name {
  font-size: 20px;
  color: #3a5f0b;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .team__item-info-name {
    font-size: 24px;
  }
}
.team__item-info-post {
  display: block;
  font-size: 14px;
  color: #79ac39;
  font-weight: 600;
}
@media (min-width: 768px) {
  .team__item-info-post {
    font-size: 16px;
  }
}
.team__item-text {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .team__item-text {
    font-size: 16px;
  }
}
.team__item-text--accent {
  font-weight: 700;
  color: #79ac39;
}

.history {
  padding: 40px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .history {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .history {
    padding: 80px 0;
  }
}
.history__head {
  text-align: center;
  margin-bottom: 40px;
}
.history__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .history__head-title {
    font-size: 36px;
  }
}
.history__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .history__head-text {
    font-size: 18px;
  }
}
.history__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.history__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .history__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .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);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.history__item:hover {
  transform: translateY(-5px);
}
.history__item-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.history__item-title {
  font-size: 20px;
  color: #3a5f0b;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .history__item-title {
    font-size: 24px;
  }
}
.history__item-text {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  padding: 0 25px 25px;
}
@media (min-width: 768px) {
  .history__item-text {
    font-size: 16px;
  }
}
.history__item-text--accent {
  font-weight: 700;
  color: #79ac39;
}

.testimonials {
  padding: 40px 0;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .testimonials {
    padding: 80px 0;
  }
}
.testimonials__head {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .testimonials__head-title {
    font-size: 36px;
  }
}
.testimonials__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials__head-text {
    font-size: 18px;
  }
}
.testimonials__head-text--accent {
  font-weight: 700;
  color: #79ac39;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.testimonials__item:hover {
  transform: translateY(-5px);
}
.testimonials__item-info {
  margin-bottom: 15px;
}
.testimonials__item-info-name {
  font-size: 20px;
  color: #3a5f0b;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .testimonials__item-info-name {
    font-size: 24px;
  }
}
.testimonials__item-info-place {
  display: block;
  font-size: 14px;
  color: #79ac39;
  font-weight: 600;
}
@media (min-width: 768px) {
  .testimonials__item-info-place {
    font-size: 16px;
  }
}
.testimonials__item-text {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .testimonials__item-text {
    font-size: 16px;
  }
}

.faq {
  padding: 40px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .faq {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .faq {
    padding: 80px 0;
  }
}
.faq__head {
  text-align: center;
  margin-bottom: 40px;
}
.faq__head-title {
  font-size: 28px;
  color: #3a5f0b;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .faq__head-title {
    font-size: 36px;
  }
}
.faq__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .faq__head-text {
    font-size: 18px;
  }
}
.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .faq__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq__item {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.3s ease;
}
.faq__item:hover {
  transform: translateY(-3px);
}
.faq__item-title {
  font-size: 18px;
  color: #3a5f0b;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .faq__item-title {
    font-size: 20px;
  }
}
.faq__item-title::after {
  content: "+";
  font-size: 24px;
  transition: transform 0.3s ease;
}
.faq__item-title.active::after {
  transform: rotate(45deg);
}
.faq__item-text {
  font-size: 15px;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .faq__item-text {
    font-size: 16px;
  }
}
.faq__item-text.active {
  display: block;
}

.contact {
  padding: 40px 0;
  background-color: #79ac39;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__head {
  text-align: center;
  margin-bottom: 40px;
}
.contact__head-title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 36px;
  }
}
.contact__head-text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact__head-text {
    font-size: 18px;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact__left {
  flex: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}
.contact__form-wrapper {
  margin-bottom: 20px;
}
.contact__form-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  margin-top: 5px;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contact__form-checkbox {
  width: 20px;
  height: 20px;
}
.contact__form-checkbox-text {
  font-size: 14px;
}
@media (min-width: 768px) {
  .contact__form-checkbox-text {
    font-size: 15px;
  }
}
.contact__form-checkbox-link {
  color: #79ac39;
  text-decoration: underline;
}
.contact__form-checkbox-link:hover {
  color: #5e862c;
}
.contact__form-btn {
  display: block;
  width: 100%;
  background-color: #f7d12d;
  color: #333333;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact__form-btn:hover {
  background-color: #e8be09;
}
.contact__form-status-wrapper {
  margin-top: 15px;
  text-align: center;
}
.contact__form-status {
  font-size: 16px;
  font-weight: 600;
}
.contact__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__right {
    align-items: flex-start;
    text-align: left;
  }
}
.contact__right-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__right-title {
    font-size: 32px;
  }
}
.contact__right-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .contact__right-text {
    font-size: 18px;
  }
}
.contact__right-list {
  width: 100%;
  margin-bottom: 30px;
}
.contact__right-item {
  margin-bottom: 15px;
}
.contact__right-item-title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  color: #f7d12d;
}
.contact__right-item-text {
  font-size: 16px;
  line-height: 1.5;
}
.contact__right-item-text--accent {
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
}
.contact__right-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact__right-img {
    max-width: 350px;
  }
}

.footer {
  background-color: #3a5f0b;
  color: #ffffff;
  padding: 40px 0 20px;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
  }
}
.footer__block {
  text-align: center;
}
@media (min-width: 768px) {
  .footer__block {
    text-align: left;
    flex: 1;
  }
  .footer__block:first-child {
    flex: 1.5;
  }
}
.footer__block .header__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}
@media (min-width: 768px) {
  .footer__block .header__logo {
    margin: 0 0 15px;
  }
}
.footer__text {
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 16px;
  }
}
.footer__text strong {
  color: #f7d12d;
  font-weight: 700;
}
.footer__title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #f7d12d;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 22px;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__item-link {
  font-size: 15px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer__item-link:hover {
  color: #f7d12d;
}
@media (min-width: 768px) {
  .footer__item-link {
    font-size: 16px;
  }
}
.footer__copy-wrapper {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #3a5f0b;
  color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  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: 15px;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 30px;
  }
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    font-size: 15px;
  }
}
.cookie-banner__link {
  color: #f7d12d;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cookie-banner__link:hover {
  color: #f9dc5e;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
}
@media (min-width: 768px) {
  .cookie-banner__buttons {
    flex-shrink: 0;
  }
}
.cookie-banner__btn {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cookie-banner__btn--accept {
  background-color: #f7d12d;
  color: #3a5f0b;
}
.cookie-banner__btn--accept:hover {
  background-color: #e8be09;
}
.cookie-banner__btn--decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.cookie-banner__btn--decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .cookie-banner__btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

.legal {
  padding: 40px 0;
  background-color: #ffffff;
  color: #333333;
}
@media (min-width: 768px) {
  .legal {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .legal__wrapper {
    gap: 30px;
  }
}
.legal__title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #3a5f0b;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 36px;
  }
}
.legal__subtitle {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #79ac39;
}
@media (min-width: 768px) {
  .legal__subtitle {
    font-size: 26px;
  }
}
.legal__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__text {
    font-size: 17px;
  }
}
.legal__text strong {
  font-weight: 700;
  color: #3a5f0b;
}
.legal__list {
  margin-left: 20px;
  list-style: disc;
  padding-left: 0;
}
.legal__item {
  list-style: disc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__item {
    font-size: 17px;
  }
}
.legal__item strong {
  font-weight: 700;
  color: #3a5f0b;
}
.legal__link {
  color: #79ac39;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal__link:hover {
  color: #5e862c;
}