    body {
      margin: 0;
      padding: 0;
      font-family: system-ui, sans-serif;
      background-color: #f0f0f0;
      color: #333;
      text-align: center;
    }

    .container {
      max-width: 500px;
      margin: auto;
      padding: 20px;
    }

    .logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-top: 20px;
      object-fit: cover;
    }

    h1 {
      margin: 15px 0 5px;
      font-size: 24px;
      color: #002868;
    }

    p.subtitle {
      font-size: 15px;
      color: #666;
      margin-bottom: 20px;
    }

    .button {
      display: block;
      width: 90%;
      max-width: 340px;
      margin: 10px auto;
      padding: 12px 20px;
      text-decoration: none;
      color: white;
      background-color: #002868;
      border-radius: 8px;
      font-size: 16px;
      transition: background 0.3s;
    }

    .button:hover {
      background-color: #0044aa;
    }
    
.contact-block {
  background-color: #d0ecff;
  border-radius: 16px;
  padding: 20px;
  margin-top: 30px;
  color: #003366;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  text-align: center; /* Центрирование текста */
  line-height: 1.6;
  border: 1px solid #90caff;
  max-width: 100%;
}
.contact-block strong {
  display: block;
  margin-top: 10px;
  color: #002244;
}
.contact-block a {
  color: #002244;
  font-weight: bold;
  text-decoration: underline;
}

.quota-block {
  background-color: #ffe5cc; /* мягкий рыжеватый оттенок */
  border-radius: 16px;
  padding: 20px;
  margin-top: 25px;
  color: #663300; /* тёмно-коричневый текст */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  font-size: 15px;
  text-align: center;
  border: 1px solid #ffcc99;
  line-height: 1.6;
}
.quota-block strong {
  display: block;
  margin-top: 10px;
  color: #663300;
}
.quota-block a {
  color: #663300;
  font-weight: bold;
  text-decoration: underline;
}
    
    .footer {
      margin-top: 40px;
      font-size: 13px;
      color: #aaa;
    }
