body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #222;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 20px;
  max-width: 450px;
  word-break: break-word;
  color: #1a3a4a;
}

.subtitle {
  font-size: 36px;
  color: #2ecc91; /* мягкий зелёный */
  margin: 20px 0;
  max-width: 450px;
  word-break: break-word;
}

#description {
  font-size: 20px;
  line-height: 1.6;
  max-width: 500px;
  color: #444;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
  max-width: 450px;
  word-break: break-word;
  color: #1a3a4a;
}

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  background: #f7fafc; /* очень светлый серо-голубой */
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30, 60, 90, 0.04);
}

#content {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text {
  flex: 1 1 45%;
  padding-right: 20px;
  max-width: 500px;
}

.image {
  flex: 1 1 45%;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

ul {
  list-style: disc;
  padding-left: 20px;
  max-width: 500px;
}

ul li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.6;
  word-break: break-word;
  color: #333;
}

.divider {
  height: 4px;
  background-color: #2ecc91;
  width: 90%;
  margin: 40px auto;
  border-radius: 2px;
}

.dark-section {
  background: #f7fafc;
}

.contact-block {
  background: #f7fafc;
  padding: 80px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30, 60, 90, 0.04);
}

.contact-block h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 50px;
  max-width: 100%;
  color: #1a3a4a;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-item {
  flex: 1 1 280px;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  padding: 24px 12px;
  margin-bottom: 20px;
}

.contact-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.contact-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 10px;
  color: #2d7ff9; /* мягкий синий */
}

.contact-item p {
  font-size: 18px;
  margin: 0;
  color: #444;
}

.contact-bottom {
  margin-top: 30px;
  font-size: 18px;
  color: #555;
}

.lang-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  background: #eafaf1;
  padding: 10px 20px;
  border-radius: 12px;
  margin-top: 20px;
  margin-right: 20px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.lang-switcher button {
  background-color: #2ecc91;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s;
}

.lang-switcher button:hover {
  background-color: #27ae7a;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 28px;
  }

  h2 {
    font-size: 28px;
  }

  ul li {
    font-size: 18px;
  }

  .contact-grid {
    flex-direction: column;
  }

  .section img {
    width: 80%;
  }
}