@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}





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;
}

.title {
  font-family: "Merriweather", serif;
  color: #2c3e50;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .title {
    font-size: 48px;
  }
}

.features {
  padding: 60px 0;
  background-color: #ffffff;
}
.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .features__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.features__list-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .features__list-item {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media (min-width: 1024px) {
  .features__list-item {
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
  }
}
.features__item-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}
.features__item-title {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: #8b4513;
  margin-bottom: 10px;
}
.features__item-text {
  font-size: 15px;
}

.stats {
  padding: 60px 0;
  background-color: #d2b48c;
  color: #2c3e50;
}
.stats .title {
  color: #2c3e50;
}
.stats__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .stats__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.stats__list-item {
  flex: 1 1 100%;
}
@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: 48px;
  color: #8b4513;
  margin-bottom: 5px;
}
.stats__item-text {
  font-size: 18px;
  font-weight: 500;
}

.services {
  padding: 60px 0;
  background-color: #f8f8f8;
}
.services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .services__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.services__list-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  flex: 1 1 100%;
}
@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: #2c3e50;
  margin-bottom: 10px;
}
.services__item-text {
  font-size: 15px;
  margin-bottom: 15px;
}
.services__item-link {
  color: #8b4513;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.services__item-link:hover {
  color: #5e2f0d;
}

.about {
  padding: 60px 0;
  background-color: #ffffff;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.about__content {
  flex: 1;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about__item-title {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 5px;
}
.about__img-wrapper {
  flex: 1;
  text-align: center;
}
.about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.steps {
  padding: 60px 0;
  background-color: #d2b48c;
  color: #2c3e50;
}
.steps .title {
  color: #2c3e50;
}
.steps__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .steps__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.steps__list-item {
  flex: 1 1 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .steps__list-item {
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (min-width: 1024px) {
  .steps__list-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}
.steps__item-nnumber-bg {
  width: 60px;
  height: 60px;
  background-color: #8b4513;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.steps__item-number {
  font-family: "Merriweather", serif;
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
}
.steps__item-title {
  font-family: "Merriweather", serif;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}
.steps__item-text {
  font-size: 15px;
}

.testimonials {
  padding: 60px 0;
  background-color: #f8f8f8;
}
.testimonials__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .testimonials__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.testimonials__list-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  flex: 1 1 100%;
}
@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;
  margin-bottom: 15px;
  font-size: 16px;
}
.testimonials__item-author {
  display: block;
  text-align: right;
  font-weight: 600;
  color: #8b4513;
}

.footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 40px 0 20px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .footer__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
}
.footer__block {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .footer__block {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .footer__block {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
.footer__logo {
  font-family: "Merriweather", serif;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}
.footer__text {
  font-size: 14px;
  line-height: 1.8;
}
.footer__title {
  font-family: "Merriweather", serif;
  font-size: 18px;
  color: #d2b48c;
  margin-bottom: 15px;
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #d2b48c;
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer__contact-item strong {
  font-weight: normal;
}
.footer__contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact-item a:hover {
  color: #d2b48c;
}
.footer__copy {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
  z-index: 1100;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1024px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 25px;
  }
}
.cookie-banner__text {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  flex-grow: 1;
}
.cookie-banner__text a {
  color: #d2b48c;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #e0ccb1;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    font-size: 16px;
  }
}
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 375px) {
  .cookie-banner__actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .cookie-banner__actions {
    gap: 15px;
  }
}
.cookie-banner__button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.cookie-banner__button--accept {
  background-color: #8b4513;
  color: #ffffff;
}
.cookie-banner__button--accept:hover {
  background-color: #5e2f0d;
}
.cookie-banner__button--decline {
  background-color: #d2b48c;
  color: #2c3e50;
}
.cookie-banner__button--decline:hover {
  background-color: #c49c67;
}
.cookie-banner__button--learn-more {
  background-color: transparent;
  color: #d2b48c;
  border: 1px solid #d2b48c;
}
.cookie-banner__button--learn-more:hover {
  background-color: rgba(210, 180, 140, 0.1);
}
@media (min-width: 375px) {
  .cookie-banner__button {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (min-width: 768px) {
  .cookie-banner__button {
    font-size: 15px;
    padding: 12px 20px;
  }
}

.page-about {
  padding: 60px 0;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .page-about {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .page-about {
    padding: 100px 0;
  }
}
.page-about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .page-about__wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.page-about__content {
  flex: 1;
}
.page-about__title {
  font-family: "Merriweather", serif;
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-about__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .page-about__title {
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .page-about__title {
    font-size: 48px;
  }
}
.page-about__description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-about__text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}
@media (min-width: 768px) {
  .page-about__text {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .page-about__text {
    font-size: 18px;
  }
}
.page-about__img-wrapper {
  flex: 1;
  text-align: center;
}
.page-about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-services {
  padding: 60px 0;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .page-services {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .page-services {
    padding: 100px 0;
  }
}
.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: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .page-services__list-item {
    flex-direction: row;
    align-items: center;
  }
  .page-services__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1440px) {
  .page-services__list-item {
    padding: 40px;
    gap: 50px;
  }
}
.page-services__content {
  flex: 1;
}
.page-services__title {
  font-family: "Merriweather", serif;
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-services__title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .page-services__title {
    font-size: 36px;
    text-align: left;
  }
}
.page-services__description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.page-services__text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
@media (min-width: 768px) {
  .page-services__text {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .page-services__text {
    font-size: 17px;
  }
}
.page-services__link {
  display: inline-block;
  background-color: #8b4513;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}
.page-services__link:hover {
  background-color: #5e2f0d;
}
@media (min-width: 1024px) {
  .page-services__link {
    text-align: left;
  }
}
.page-services__img-wrapper {
  flex: 1;
  text-align: center;
  min-width: 280px;
}
@media (min-width: 1024px) {
  .page-services__img-wrapper {
    flex-shrink: 0;
    max-width: 50%;
  }
}
.page-services__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.cta {
  padding: 60px 0;
  background-color: #8b4513;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .cta {
    padding: 100px 0;
  }
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.cta__title {
  font-family: "Merriweather", serif;
  font-size: 30px;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .cta__title {
    font-size: 44px;
  }
}
@media (min-width: 1440px) {
  .cta__title {
    font-size: 52px;
  }
}
.cta__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 600px;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .cta__text {
    font-size: 18px;
  }
}
.cta__link {
  display: inline-block;
  background-color: #ffffff;
  color: #8b4513;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta__link:hover {
  background-color: #d2b48c;
  color: #2c3e50;
}
@media (min-width: 768px) {
  .cta__link {
    padding: 15px 35px;
    font-size: 17px;
  }
}

.contact {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 100px 0;
  }
}
.contact__title {
  font-family: "Merriweather", serif;
  font-size: 30px;
  color: #2c3e50;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .contact__title {
    font-size: 44px;
  }
}
@media (min-width: 1440px) {
  .contact__title {
    font-size: 52px;
  }
}
.contact__text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .contact__text {
    font-size: 18px;
  }
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}
@media (min-width: 768px) {
  .contact__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.contact__list-item {
  font-size: 16px;
  color: #333;
  text-align: left;
  padding-left: 25px;
  position: relative;
}
.contact__list-item:before {
  content: "✓";
  color: #8b4513;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
@media (min-width: 768px) {
  .contact__list-item {
    font-size: 17px;
  }
}
.contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact__form {
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .contact__form {
    padding: 50px;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .contact__form-wrapper {
    flex-direction: row;
  }
}
.contact__form-field {
  flex: 1;
  text-align: left;
}
.contact__form-label {
  display: block;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact__form-label {
    font-size: 16px;
  }
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d2b48c;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #f8f8f8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #8b4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-button {
  display: inline-block;
  background-color: #8b4513;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
.contact__form-button:hover {
  background-color: #5e2f0d;
}
@media (min-width: 768px) {
  .contact__form-button {
    font-size: 17px;
    padding: 15px 35px;
  }
}
.contact__form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact__form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  opacity: 1;
  visibility: visible;
}
.contact__form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  opacity: 1;
  visibility: visible;
}
.contact__form-status.loading {
  background-color: #ffeeba;
  color: #856404;
  border: 1px solid #ffdf7e;
  opacity: 1;
  visibility: visible;
}

.legal {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 100px 0;
  }
}
.legal__title {
  font-family: "Merriweather", serif;
  font-size: 32px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 42px;
  }
}
@media (min-width: 1024px) {
  .legal__title {
    font-size: 50px;
  }
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section:last-child {
  margin-bottom: 0;
}
.legal__section-title {
  font-family: "Merriweather", serif;
  font-size: 24px;
  color: #8b4513;
  margin-bottom: 20px;
  border-bottom: 2px solid #d2b48c;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 28px;
  }
}
.legal__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.legal__text:last-child {
  margin-bottom: 0;
}
.legal__text a {
  color: #8b4513;
  text-decoration: underline;
}
.legal__text a:hover {
  color: #5e2f0d;
}
.legal__text strong {
  font-weight: 700;
}
.legal__text em {
  font-style: italic;
}
@media (min-width: 768px) {
  .legal__text {
    font-size: 17px;
  }
}
.legal__list {
  padding-left: 20px;
  margin-bottom: 15px;
}
.legal__list-item {
  list-style: disc inside;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 5px;
  color: #333;
}
@media (min-width: 768px) {
  .legal__list-item {
    font-size: 17px;
  }
}