#mod-menu1 > li > a,
#mod-menu1 > li > a:hover,
#mod-menu1 > li.active > a,
#mod-menu1 > li.current > a {
  color: #fff;
  font-size: 1.15rem;
}
.cookie-notice {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 9999;
  background: #ffffff;
  color: #222222;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  padding: 1.25rem;
}

.cookie-notice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-notice p {
  margin: 0;
}

.cookie-notice a {
  color: #CF0B3E;
  text-decoration: underline;
}

.cookie-notice__button {
  flex: 0 0 auto;
  border: 0;
  background: #CF0B3E;
  color: #ffffff;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.cookie-notice__button:hover {
  background: #a90832;
}

@media (max-width: 700px) {
  .cookie-notice__content {
    display: block;
  }

  .cookie-notice__button {
    width: 100%;
    margin-top: 1rem;
  }
}