.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 45, 68, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: #f4f7f9;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  height: auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  color: #1e2d44;
}

.modal-content p {
  color: #4a4a4a;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.close-btn,
.close-modal {
  background-color: green;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}

.close-btn:hover,
.close-modal:hover {
  background-color: #9fe870;
}

.close-btn {
  float: right;
  font-size: 24px;
  background-color: transparent;
  color: #1e2d44;
  padding: 0;
}

.close-btn:hover {
  transform: scale(1.2);
  background-color: transparent;
}

.cookie-consent-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  color: #ffffff;
  padding: 20px;
  text-align: center;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
}

.cookie-policy-link {
  color: #d1a56f;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-policy-link:hover {
  color: #e0b04b;
}

.cookie-buttons {
  margin-top: 15px;
}

.cookie-button {
  padding: 12px 20px;
  margin-left: 10px;
  background-color: #2e2e2e;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-button:hover {
  background-color: #d1a56f;
}

.cookie-button.reject {
  background-color: #e97171;
}

.cookie-button.reject:hover {
  background-color: #ff6f61;
}

.hide {
  display: none;
}
