#mobile-menu-active li a, #mobile-menu-active li a:hover{
    color: #FFF !important;
}

.subscribe-form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f1f1f1;
  color: #333;
  text-align: center;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.cookie-message, .cookie-button {
  align-self: center;
}

.cookie-consent p {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #564747;
}

.cookie-consent p a{
    text-decoration: underline;
}

/* Mobile view */
@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cookie-consent p {
    margin-bottom: 20px;
  }
}