
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #fff;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    h1 {
      text-align: center;
      font-size: 24px;
      margin-bottom: 30px;
      letter-spacing: 1px;
      font-weight: 600;
    }

    h2 {
      text-align: center;
      font-size: 18px;
      margin: 40px 0 25px;
      font-weight: 500;
    }

    .policy-content {
      font-size: 14px;
      color: #444;
    }

    .section {
      margin-bottom: 30px;
    }

    .section-title {
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .section-text {
      margin-bottom: 15px;
    }

    .subpoints {
      margin-top: 15px;
      margin-left: 20px;
      list-style-type: none;
    }

    .subpoints li {
      margin-bottom: 10px;
    }

    .subpoints li::before {
      content: attr(data-letter) ") ";
      font-weight: bold;
      margin-right: 5px;
    }

    a {
      color: #20b2aa;
      text-decoration: none;
      font-weight: 500;
    }
 
    a:hover {
      text-decoration: underline;
    }

    .custom-button {
        display: inline-block;
        padding: 12px 24px;
        background-color: #02a0b4; /* акцентный цвет из вашего дизайна */
        color: white;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        font-size: 16px;
        transition: background-color 0.2s ease, transform 0.1s ease;
        box-shadow: 0 2px 6px rgba(2, 160, 180, 0.2);
        text-align: center;
    }
    
    .custom-button:hover {
        background-color: #028a9c;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(2, 160, 180, 0.3);
    }
    
    .custom-button:active {
        transform: translateY(0);
    }

    /* Адаптивность */
    @media (max-width: 768px) {
      body {
        padding: 20px 15px;
        font-size: 14px;
      }
      h1 {
        font-size: 20px;
      }
      h2 {
        font-size: 16px;
      }
      .section-title {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 15px;
      }
      .subpoints {
        margin-left: 10px;
      }
    }