* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #f4f4f4, #e8e8e8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-box {
  width: 450px;
  background: white;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.cookie-icon {
  font-size: 55px;
  margin-bottom: 15px;
}

h1 {
  font-size: 26px;
  color: #222;
  margin-bottom: 15px;
}

p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 25px;
}

.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.button {
  display: inline-block;
  width: 60%;
  padding: 14px;
  border-radius: 30px;
  background: #ff7a00;
  color: white;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #e66d00;
  transform: translateY(-2px);
}

.accept {
  background: #f8b240;
  color: white;
}

.accept:hover {
  background: #c38821;
  transform: translateY(-2px);
}

.decline {
  background: #eeeeee;
  color: #333;
}

.decline:hover {
  background: #dddddd;
}

.privacy {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

.privacy a {
  color: #f8b240;
  text-decoration: none;
}

.privacy a:hover {
  text-decoration: underline;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
