/* Accordion Styles */
.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: transparent; /* Uncommented for clarity, assuming you want white background */
  overflow: hidden;
}



/* Modal Styles */
#popupForm {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Modal Content */
.modal-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
      width: 100%;
    max-width: 570px;
  margin: 10% auto;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Heading */
.heading {
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

/* Close Button */
.close-button {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-button:hover {
  color: #333;
}

/* Input Fields */
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"],
.modal-content input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  margin: 8px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 15px;
  transition: border 0.3s, box-shadow 0.3s;
}

.modal-content input:focus {
  border-color: #FFBC05;
  box-shadow: 0 0 0 3px rgba(255, 188, 5, 0.2);
  outline: none;
}

/* Labels */
.modal-content label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #555;
}



/* Close Button */
.close-button {
  font-size: 24px;
  color: black;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.cookie-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.cookie-content {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#allowCookiesBtn {
  background-color: #FFBC05;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#allowCookiesBtn:hover {
  background-color: #FFBC05;
}
