.lang-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .lang-ul li {
    margin: 0 10px;
    position: relative;
  }
  .lang-ul li a {
    text-decoration: none;
    color: #c9c7c7;
  }
  .lang-ul li.active a {
    color: #fff;
  }
   /* Cookie Consent Container */
   .cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f1f1f1;
    color: black;
    text-align: center;
    padding: 15px 10px;
    z-index: 1000;
}
/* Cookie Consent Message */
.cookie-message {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
/* Accept Button */
.cookie-button {
    background: #105d98; /* Green button for positive action */
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}
.cookie-button:hover {
    background: #45a049; /* Slightly darker green on hover */
}
/* Responsiveness for Smaller Screens */
@media (max-width: 480px) {
    .cookie-message {
        flex-direction: column;
        text-align: center;
    }
    .cookie-button {
        margin: 10px 0 0 0;
        width: auto;
    }
}