.cookie-policy-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cookie-policy-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
}

.button-group button {
  padding: 10px 15px;
  margin: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.reject-button {
  background-color: #e57373;
  color: white;
}

.accept-button {
  background-color: #4caf50;
  color: white;
}

.customize-button {
  background-color: #64b5f6;
  color: white;
}

.policy-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.policy-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0044cc;
}

.policy-intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #666;
}

.policy-heading {
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}

.policy-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.policy-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.policy-list li {
  margin-bottom: 10px;
}
