.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    font-family: "Titillium Web", sans-serif;
    display: none;
  }
  
  .cookie-consent.show {
    display: block;
  }
  
  .cookie-consent__content {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .cookie-consent__text {
    flex: 1;
    margin-right: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .cookie-consent__text p {
    margin: 0 0 10px;
    color: #fff;
  }
  
  .cookie-consent__text a {
    color:#ff8a7a;
    text-decoration: underline;
  }
  
  .cookie-consent__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cookie-consent__button {
    background-color:#ff8a7a;
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Titillium Web", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cookie-consent__button:hover {
    background-color: #fff;
  }
  
  .cookie-consent__button--deny {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  
  .cookie-consent__button--deny:hover {
    background-color:#ff8a7a;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .cookie-consent__content {
      flex-direction: column;
      text-align: center;
    }
  
    .cookie-consent__text {
      margin-right: 0;
      margin-bottom: 15px;
    }
  
    .cookie-consent__buttons {
      justify-content: center;
    }
  }