@charset "utf-8";
body {
  background: #f9f9f9;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container-cookies {
  max-width: 900px;
  margin: 32px auto;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(44,62,80,0.13);
}

h1 {
  color: #243263;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

h2 {
  color: #3466b6;
  font-size: 14px;
  margin-top: 28px;
  margin-bottom: 11px;
  font-weight: bold;
  border-left: 4px solid #3466b6;
  padding-left: 10px;
}

ul {
  margin-left: 30px;
  margin-bottom: 15px;
  color: #2a2a2a;
  padding-left: 0;
}

ul ul {
  margin-left: 18px;
  margin-bottom: 8px;
}

ul li {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.7;
  list-style-type: disc;
}

strong {
  color: #243263;
}

p {
  font-size: 12px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .container-cookies {
    padding: 6px;
  }
  h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 14px;
    padding-left: 6px;
    margin-top: 17px;
    margin-bottom: 8px;
  }
  ul {
    margin-left: 14px;
  }
  ul li {
    font-size: 12px;
  }
  p {
    font-size: 12px;
  }
}