.geo-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  box-sizing: border-box;
}
.geo-cookie-content {
  background: #fff;
  padding: 2rem;
  max-width: 90%;
  width: 400px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
}
.geo-cookie-content p {
  margin-bottom: 1em;
  font-size: 1.5rem;
}
.geo-cookie-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
.geo-cookie-buttons button {
  padding: 0.6em 1.5em;
  font-size: 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.geo-cookie-buttons .accept {
  background-color: #d62828;
  color: white;
}
.geo-cookie-buttons .accept:hover {
  background-color: #b81e1e;
}
.geo-cookie-buttons .settings,
.geo-cookie-buttons .deny {
  background-color: #eee;
  color: #333;
}
.geo-cookie-buttons .settings:hover,
.geo-cookie-buttons .deny:hover {
  background-color: #ccc;
}
.geo-privacy-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
}
.geo-privacy-link:hover {
  color: red;
  border-bottom: 1px solid red;
}
