body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #111;
  color: #eee;
  margin: 0;
  padding: 0;
}

.content-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}

.page-title {
  text-align: center;
  color: #00bcd4;
  margin-bottom: 40px;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 600;
}

/* Секции */
.section {
  margin-bottom: 35px;
  background: #181818;
  border-left: 4px solid #00bcd4;
  padding: 20px 25px;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.section:hover {
  transform: translateY(-3px);
  background: #222;
}

.section h2 {
  color: #4dd0e1;
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.section p {
  color: #ccc;
  line-height: 1.6;
}

.section ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.section li {
  margin-bottom: 8px;
  color: #ddd;
  line-height: 1.5;
}
.section ul {
    list-style-type: disc;
    padding-left: 25px;
}

.section a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.section a:hover {
    color: #004d40;
    text-decoration: underline;
}


/* адаптив */
@media (max-width: 600px) {
  .content-container {
    padding: 20px;
    margin: 20px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 15px;
  }
}
