body {
  margin: 0;
  font-family: 'Manrope', 'Montserrat', 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-size: 18px;
  line-height: 1.6;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,191,174,0.06);
  padding: 1.2rem 0 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #00BFAE;
  font-size: 2rem;
  font-weight: 800;
  gap: 0.7rem;
  letter-spacing: 0.02em;
}
.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #00BFAE;
  transition: width 0.2s;
  margin-top: 2px;
}
.main-nav a:hover {
  color: #00BFAE;
}
.main-nav a:hover::after {
  width: 100%;
}
.hero-block {
  background: linear-gradient(120deg, #E0F7FA 0%, #fff 100%);
  border-radius: 0 0 48px 48px/0 0 24px 24px;
  box-shadow: 0 8px 32px rgba(0,191,174,0.08);
  margin-bottom: 3.5rem;
  padding: 4.5rem 0 3rem 0;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3.5rem;
}
.hero-text {
  flex: 1 1 380px;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: #222;
  letter-spacing: -0.02em;
}
.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  color: #444;
}
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #00BFAE;
  box-shadow: 0 2px 12px rgba(0,191,174,0.10);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gradient {
  background: linear-gradient(90deg, #00BFAE 0%, #0077C2 100%);
  color: #fff;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #0077C2 0%, #00BFAE 100%);
  color: #fff;
}
.hero-image {
  flex: 1 1 380px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
.hero-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,191,174,0.10);
}
.hero-icons {
  display: flex;
  gap: 1.2rem;
}
.hero-icons img {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,191,174,0.10);
  padding: 0.5rem;
}
.benefits-block {
  margin: 3.5rem 0;
}
.benefits-block h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0077C2;
  margin-bottom: 2.2rem;
  text-align: center;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.benefit-item {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,191,174,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,191,174,0.16);
}
.benefit-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}
.benefit-item h3 {
  color: #00BFAE;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.services-block {
  margin: 3.5rem 0;
}
.services-block h2 {
  color: #0077C2;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,191,174,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,191,174,0.16);
}
.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  color: #00BFAE;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.cases-block, .blog-block {
  background: linear-gradient(90deg, #E0F7FA 0%, #fff 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,191,174,0.08);
  margin: 3.5rem 0;
  padding: 2.5rem 0;
}
.cases-block h2, .blog-block h2 {
  color: #0077C2;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
}
.cases-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.case-item, .blog-post {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,191,174,0.08);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  min-width: 320px;
}
.case-item img, .blog-post img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1rem;
}
.case-item h3, .blog-post h3 {
  color: #00BFAE;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.partners-block {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,191,174,0.08);
  margin: 3.5rem 0;
  padding: 2.5rem 0;
}
.partners-block h2 {
  color: #0077C2;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
}
.partners-list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.partners-list img {
  height: 48px;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.8;
  transition: opacity 0.2s, filter 0.2s;
}
.partners-list img:hover {
  opacity: 1;
  filter: grayscale(0) contrast(1.1);
}
.faq-block {
  background: linear-gradient(90deg, #fff 60%, #E0F7FA 100%);
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0,191,174,0.08);
  margin: 3.5rem 0;
  padding: 2.5rem 0;
}
.faq-block h2 {
  color: #0077C2;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,191,174,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077C2;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  border-radius: 16px 16px 0 0;
  transition: background 0.2s;
  outline: none;
}
.faq-question:hover {
  background: #E0F7FA;
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: #222;
}
.contacts-block {
  margin: 3.5rem 0;
}
.contacts-block h2 {
  color: #0077C2;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-align: center;
}
.contacts-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}
.contacts-info {
  flex: 1 1 320px;
  font-size: 1.1rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,191,174,0.08);
  padding: 2rem 1.5rem;
}
.contacts-form {
  flex: 1 1 320px;
}
.contacts-form form {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,191,174,0.10);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contacts-form label {
  font-weight: 600;
  color: #0077C2;
  margin-bottom: 0.3rem;
}
.contacts-form input,
.contacts-form textarea,
.contacts-form select {
  border: 1.5px solid #E0F7FA;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #F8FAFB;
  box-shadow: 0 1px 4px rgba(0,191,174,0.08);
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}
.contacts-form input:focus,
.contacts-form textarea:focus,
.contacts-form select:focus {
  border: 1.5px solid #00BFAE;
  box-shadow: 0 2px 8px rgba(0,191,174,0.12);
  outline: none;
}
.contacts-form button[type="submit"] {
  margin-top: 0.5rem;
  align-self: flex-end;
}
.contacts-map img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,191,174,0.10);
}
.site-footer {
  background: #fff;
  color: #222;
  padding: 2.5rem 0 1.2rem 0;
  border-radius: 32px 32px 0 0/24px 24px 0 0;
  margin-top: 4rem;
  box-shadow: 0 -2px 16px rgba(0,191,174,0.06);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #00BFAE;
}
.footer-nav ul, .footer-policy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a, .footer-policy a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-policy a:hover {
  color: #00BFAE;
}
.copyright {
  text-align: center;
  margin-top: 1.2rem;
  color: #888;
  font-size: 1rem;
}
@media (max-width: 1100px) {
  .hero-content, .services-list, .blog-list, .reviews-list, .contacts-flex, .footer-flex, .cases-list, .partners-list {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-image {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .container {
    width: 99%;
    padding: 0 0.5rem;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .site-header, .site-footer {
    border-radius: 0;
  }
  .footer-flex {
    gap: 1.2rem;
  }
} 