body {
  background: #fff;
  color: #2E2D2D;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  margin: 0;
}

/* Container */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px 32px;
}

h1 {
  color: #00AED6;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
h2 {
  color: #2E2D2D;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
}
h3 {
  color: #2E2D2D;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #444;
}
ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: none;
}
li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #444;
  position: relative;
  padding-left: 16px;
}
li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #00AED6;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
th {
  background: none;
  color: #00AED6;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  padding: 12px 10px;
  border-bottom: 2px solid #00AED6;
}
td {
  padding: 12px 10px;
  border: none;
  border-bottom: 1px solid #eee;
  color: #444;
}
tr:last-child td {
  border-bottom: none;
}
a {
  color: #00AED6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #007C9A;
  text-decoration: underline;
}
.btn-back {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background: #00AED6;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
}
.btn-back:hover {
  background: #007C9A;
  color: #fff;
}
.separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 48px 0;
}
.last-update {
  color: #999;
  font-size: 0.95rem;
  margin-top: 48px;
}

/* Footer */
.cookies-footer {
  background: #19DCEA;
  padding: 24px 16px;
  text-align: center;
}
.cookies-footer p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.8;
}
.cookies-footer a {
  color: #fff;
  text-decoration: underline;
}
.cookies-footer a:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .container {
    padding: 24px 16px;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  table {
    font-size: 0.85rem;
  }
  th, td {
    padding: 8px 6px;
  }
  .cookies-header {
    padding: 12px 16px;
  }
}
  