body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  font-size: 28px;
  color: #2a8d6a;
}

.logo-link {
  display: inline-block;
}

.logo-img {
  height: 150px;         /* высота логотипа в шапке */
  width: auto;
  border-radius: 8px;   /* слегка скруглённые углы для приятного вида */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);  /* лёгкая тень */
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #2a8d6a;
  font-weight: bold;
}

.hero {
  background: #e5f7f0;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
}

.features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
}

footer {
  background: #2a8d6a;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.hero {
  background-size: cover;            /* растянуть, сохраняя пропорции */
  background-repeat: no-repeat;      /* не повторять */
  background-position: center center;/* выравнивание по центру */
  background-attachment: scroll;     /* не фиксировать */
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
  min-height: 400px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 12px;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-img:hover {
  transform: scale(1.03);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn {
  background-color: #2a8d6a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #246d56;
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1;
  padding: 20px;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.whyus {
  margin-top: 50px;
  padding-bottom: 30px;
}

.whyus h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.whyus ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
}

.whyus li {
  padding-left: 1.5em;
  position: relative;
}

.whyus li::before {
  content: "✔";
  color: #2a8d6a;
  position: absolute;
  left: 0;
}

.cta {
  background: #2a8d6a;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 50px;
  border-radius: 10px 10px 0 0;
}

.cta h2 {
  margin-bottom: 15px;
}

footer {
  background: #1c5b46;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.content {
  padding: 40px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.content h1 {
  margin-bottom: 20px;
  color: #2a8d6a;
}

.price-lists {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.price-lists h2 {
  color: #2a8d6a;
  margin-bottom: 15px;
}

.price-lists ul {
  list-style: disc inside;
}

.price-lists a {
  color: #2a8d6a;
  text-decoration: none;
  font-weight: 600;
}

.price-lists a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-left: 0;
  }

  header nav ul li {
    margin: 5px 0;
  }

  .header-flex {
    flex-direction: column;
    align-items: flex-start;
        align-items: center;
    gap: 15px;
  }

  .logo-img {
    max-width: 180px;
    height: auto;
  }

  nav ul {
    padding-left: 0;
    margin: 0;
  }

  nav ul li a {
    font-size: 18px;
  }
}
