.accordion-content p {
    margin: 0px;
    text-align: justify;
    padding: 0px 5px 0px 10px;
    line-height: 1.5;
    width: 100% !important;
    margin-left: auto;
}

#cookie-popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f1f5fb; /* Light background */
      color: #333;
      padding: 20px;
      max-width: 300px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      z-index: 9999;
    }

    #cookie-popup.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #cookie-popup p {
      margin: 0 0 10px;
      font-size: 14px;
      line-height: 1.5;
    }

    #cookie-popup a {
      color: #007BFF;
      text-decoration: none;
      font-size: 14px;
    }

    #cookie-popup a:hover {
      text-decoration: underline;
    }

    #cookie-popup button {
      background-color: #2e89ff;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
      display: block;
      margin: 10px auto 0;
    }

    #cookie-popup button:hover {
      background-color: #207ce5;
    }


.accordion-header a {
  max-width: 85% !important;
}

.accordion-header span.icon {
  margin-left: 10px; /* Space between text and icon */
}

.accordion-header .text {
  max-width: 80%; /* Restricts text width to 80% */
color:black !important;
}