* {
  box-sizing: border-box;
}

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: "Poppins", sans-serif;
  color: #424242;
  background-color: #F5F5F5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1200px;
    padding: 0;
  }
}

.header {
  background-color: #212121;
  color: #FFFFFF;
  padding: 20px 0;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header__wrapper {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .header__wrapper {
    justify-content: space-between;
  }
}
.header__info {
  flex: 1;
}
.header__logo {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 100px;
    height: 100px;
  }
}
.header__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .header__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1440px) {
  .header__title {
    font-size: 48px;
  }
}
.header__description {
  font-size: 16px;
  margin-bottom: 25px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .header__description {
    font-size: 18px;
  }
}
.header__link {
  display: inline-block;
}
.header__link img {
  max-width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header__link img {
    max-width: 180px;
  }
}
.header__images {
  flex: 1;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .header__images {
    margin-top: 0;
  }
}
.header__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/about-bg.webp");
  padding: 40px 0;
  background-color: #FFFFFF;
}
.about__title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .about__title {
    font-size: 40px;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.about__info {
  flex: 1;
}
.about__subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #4CAF50;
}
@media screen and (min-width: 768px) {
  .about__subtitle {
    font-size: 24px;
  }
}
.about__description {
  font-size: 15px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .about__description {
    font-size: 16px;
  }
}
.about__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__feature {
  background-color: #d9eeda;
  padding: 20px;
  border-radius: 8px;
}
.about__feature-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #4CAF50;
}
@media screen and (min-width: 768px) {
  .about__feature-title {
    font-size: 20px;
  }
}
.about__feature-description {
  font-size: 14px;
  color: #424242;
}
@media screen and (min-width: 768px) {
  .about__feature-description {
    font-size: 15px;
  }
}
.about__feature-alt {
  background-color: #ffe7a0;
  padding: 20px;
  border-radius: 8px;
}
.about__feature-description-alt {
  font-size: 14px;
  color: #424242;
}
@media screen and (min-width: 768px) {
  .about__feature-description-alt {
    font-size: 15px;
  }
}

.benefits {
  padding: 40px 0;
  background-color: #F5F5F5;
}
.benefits__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .benefits__wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
.benefits__info {
  flex: 1;
}
.benefits__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #212121;
}
@media screen and (min-width: 768px) {
  .benefits__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440px) {
  .benefits__title {
    font-size: 40px;
  }
}
.benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits__item {
  font-size: 16px;
  margin-bottom: 10px;
  color: #424242;
}
.benefits__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .benefits__item {
    font-size: 18px;
  }
}
.benefits__image {
  flex: 1;
  text-align: center;
}
.benefits__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.footer {
  background-color: #212121;
  color: #FFFFFF;
  padding: 20px 0;
  text-align: center;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__text {
  font-size: 14px;
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 15px;
}
.footer__link {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
}
.footer__link:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.95);
  color: #FFFFFF;
  padding: 15px 0;
  z-index: 1000;
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    justify-content: center;
    max-width: 100%;
    padding: 0 15px;
  }
}
.cookie-banner__text {
  font-size: 14px;
  margin: 0;
}
.cookie-banner__text a {
  color: #FFC107;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .cookie-banner__text {
    flex: 1;
    text-align: left;
  }
}
.cookie-banner__accept {
  background-color: #4CAF50;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.cookie-banner__accept:hover {
  background-color: #3d8b40;
}
@media screen and (min-width: 768px) {
  .cookie-banner__accept {
    min-width: 120px;
  }
}

.legal {
  padding: 40px 0;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .legal {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1440px) {
  .legal {
    padding: 80px 0;
  }
}
.legal__title {
  font-size: 30px;
  font-weight: 600;
  color: #212121;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .legal__title {
    font-size: 38px;
  }
}
@media screen and (min-width: 1440px) {
  .legal__title {
    font-size: 48px;
  }
}
.legal__date {
  font-size: 14px;
  color: #424242;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .legal__date {
    font-size: 15px;
  }
}
.legal__intro, .legal__paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #424242;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .legal__intro, .legal__paragraph {
    font-size: 16px;
  }
}
.legal__heading {
  font-size: 22px;
  font-weight: 600;
  color: #4CAF50;
  margin-top: 35px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .legal__heading {
    font-size: 26px;
  }
}
.legal__list {
  padding-left: 20px;
  margin-bottom: 20px;
}
.legal__list-item {
  list-style: disc;
  font-size: 15px;
  line-height: 1.8;
  color: #424242;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .legal__list-item {
    font-size: 16px;
  }
}
.legal__list-strong {
  font-weight: 600;
  color: #212121;
}
.legal__link {
  color: #4CAF50;
  text-decoration: underline;
}
.legal__link:hover {
  text-decoration: none;
}