* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  padding: 40px 20px;
  color: #111;
}

.cookie-container {
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 10px;
  background: white;
  padding: 40px 60px;
  border-radius: 6px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #111;
}

h1 .highlight {
  color: #FDC805;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

a {
  color: #2a65c9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-container {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f9f9f9;
  padding: 30px 15px;
  color: #111;
}

.cookie-wrapper {
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 50px;
}

h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
  margin-top: 40px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

a {
  color: #2a65c9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

code {
  background: #f0f0f0;
  padding: 2px 4px;
  font-size: 15px;
  border-radius: 3px;
  font-family: monospace;
}

@media (max-width: 768px) {
  .cookie-wrapper {
    padding: 20px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}
