.accordion-container {
  width: 80%;
  margin: 20px auto;
  border: 1px solid #ccc;
  border-radius: 0px;
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background-color: #4a6f8a5c;
  color: #000;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #e0e0e0;
}

.accordion-content {
  padding: 0 15px;
  background-color: white;
  max-height: 0; /* Initially hidden */
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Class to apply when content is active/expanded */
.accordion-content.active {
 min-height: 50px; /* Adjust as needed for content height */
 height:100%;
 max-height:400px;
  padding: 15px;
}

.accordion-content p {
    color:#000;
    margin-bottom:0px;
}