/* Общие стили */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: url('images/bg_main.png') no-repeat center center/cover;
    color: #ffffff;
  }
  
  /* Центрирование текста */
  .policy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* затемнение фона */
  }
  
  /* Стили для текста */
  .policy-content {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
  }
  
  .policy-content h1 {
    margin-bottom: 20px;
    font-size: 32px;
    color: #00d1ff;
  }
  
  .policy-content p {
    margin: 12px 0;
    font-size: 20px;
  }
  .home-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #00d1ff;
    color: #000;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .home-button:hover {
    background-color: #00aacc;
  }
  