/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 15px;
}

.container {
  max-width: 700px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
  font-weight: 700;
  font-size: 1.4rem;
}

p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

li {
  margin-bottom: 10px;
  font-size: 1rem;
}

a {
  color: #1a73e8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Главное предупреждение */
.important {
  background: #fff3cd;
  border-left: 6px solid #ffecb5;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #856404;
  border-radius: 6px;
}
