* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    header {
  padding-top: 120px;
}

    .lang-switcher {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  display: flex;
  gap: 6px;
}

.lang-switcher a {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  color: #0f172a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.lang-switcher a:hover {
  background: #7360f2;
  color: white;
  transform: translateY(-1px);
}

.lang-switcher a.active {
  background: #7360f2;
  color: white;
}

@media(max-width:768px) {
  .lang-switcher {
    top: 10px;
    right: 10px;
    gap: 4px;
  }

  .lang-switcher a {
    padding: 6px 10px;
    font-size: 12px;
  }
}

    body {
      background: #f7f9fb;
      color: #222;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    header {
      background: linear-gradient(135deg, #0f172a, #164e63);
      color: white;
      padding: 80px 0;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero-text h1 {
      font-size: 48px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 20px;
      margin-bottom: 25px;
      opacity: 0.95;
    }

    .advantages {
      margin-bottom: 30px;
    }

    .advantages li {
      list-style: none;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 15px 25px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-viber {
      background: #7360f2;
      color: white;
    }

    .btn-call {
      background: white;
      color: #0f172a;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .hero-image {
      flex: 1;
      min-width: 300px;
    }

    .hero-image img {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }

    section {
      padding: 80px 0;
    }

    h2 {
      text-align: center;
      margin-bottom: 50px;
      font-size: 38px;
      color: #0f172a;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: white;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      text-align: center;
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-bottom: 15px;
      color: #164e63;
    }

    .before-after {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .before-after img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .prices {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      padding: 20px;
      border-bottom: 1px solid #eee;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .step {
      background: white;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .step span {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: #164e63;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .review {
      background: white;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .review strong {
      display: block;
      margin-top: 15px;
      color: #164e63;
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      max-width: 700px;
      margin: auto;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 12px;
      font-size: 16px;
    }

    .contact-form button {
      width: 100%;
      background: #7360f2;
      color: white;
      border: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 18px;
      cursor: pointer;
      transition: 0.3s;
    }

    .contact-form button:hover {
      opacity: 0.9;
    }

    footer {
      background: #0f172a;
      color: white;
      padding: 40px 0;
      text-align: center;
    }

    .sticky-viber {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #7360f2;
      color: white;
      padding: 16px 22px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      z-index: 999;
    }

    @media(max-width: 768px) {
      .hero-text h1 {
        font-size: 36px;
      }

      h2 {
        font-size: 30px;
      }

      .hero {
        flex-direction: column;
      }
    }