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

.header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.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;
  }
}

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

.about {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.about .title {
  font-family: "Merriweather", serif;
  font-size: 28px;
  color: #5a8f4b;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}
.about .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d4ac0d;
  margin: 15px auto 0;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .about .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .about .title {
    font-size: 48px;
  }
}
.about__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeIn 0.8s ease-out;
}
.about__text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: center;
}
.about__text strong {
  font-weight: 700;
  color: #5a8f4b;
}
@media (min-width: 768px) {
  .about__text {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .about__text {
    font-size: 18px;
    text-align: left;
  }
}

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