#cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-content {
  background: var(--color-secondary-white);
  color: var(--color-primary-blue);
  padding: 30px 25px;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cookie-content p {
  font-size: 24px;
  margin: 0;
}

.cookie-content a {
  text-decoration: underline;
}

.cookie-content a:hover {
  color: var(--color-secondary-blue);
}

.cookie-close {
  background-color: var(--color-secondary-blue); 
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.cookie-close:hover {
  background-color: #9b7f50;
}

.dpo-image img{
  width: 350px;
}

.dpo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Mobile */
@media (max-width: 767px) {
  .cookie-content {
    padding: 20px 15px;
  }

  .cookie-content p,
  .cookie-content a {
    font-size: 16px;
  }

  .cookie-close {
    width: 100%;
    font-size: 14px;
  }
}
