/* ÐžÐ±Ñ‰Ð¸Ðµ ÑÑ‚Ð¸Ð»Ð¸ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Ð¥ÐµÐ´ÐµÑ€ */
  header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
  }
  
  .logo {
    float: left;
  }
  
  .menu {
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    display: inline;
    margin-left: 20px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  /* Ð¤ÑƒÑ‚ÐµÑ€ */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  /* Ð“Ð»Ð°Ð²Ð½Ð°Ñ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° */
  .hero {
    text-align: center;
    padding: 100px 0;
    background-color: #f5f5f5;
  }
  
  .hero h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
  }
  
  /* Ð¡Ñ‚Ð°Ñ‚ÑŒÐ¸ */
  .article h1, .article h2 {
    color: #333;
    margin-bottom: 20px;
  }
  
  .article p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  /* ÐžÑ‚Ð·Ñ‹Ð²Ñ‹ */
  .testimonial {
    margin-bottom: 30px;
  }
  
  .testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .testimonial h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
  }
  
  .testimonial p {
    font-size: 16px;
    color: #555;
  }
  
  /* Ð¤Ð¾Ñ€Ð¼Ñ‹ */
  form {
    margin-top: 20px;
  }
  
  form label, form input, form textarea {
    display: block;
    margin-bottom: 10px;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* ÐŸÐ¾Ð»Ð¸Ñ‚Ð¸ÐºÐ° Ð¸ Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð° */
  .policy-content {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }