.custom-accordion-item {
  border: 1px solid #149f83;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
}

.custom-accordion-header {
  background-color: #fff;
  border: none;
  width: 100%;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  color: #149f83;
  font-size: 1.2rem;
  font-weight: 600;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.custom-accordion-body h4 {
  font-size: 1rem;
}

.custom-accordion-header.active {
  border-left: 4px solid #149f83;
}

.custom-accordion-header::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #149f83;
  transition: transform 0.3s ease;
}

.custom-accordion-header.active::after {
  content: "-";
}

.custom-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
}

.custom-accordion-content.active {
  max-height: 1000px;
}

.custom-accordion-body {
  padding: 1rem;
  border-top: 1px solid #149f83;
  color: #149f83;
}

.custom-accordion-body p {
  margin-bottom: 1rem;
}

.custom-accordion-body ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.custom-accordion-body li {
  margin-bottom: 0.5rem;
}

.column-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-card {
  background-color: #149f83 !important;
  color: white !important;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(0, 0, 0, 0.1),
    5px -5px 15px rgba(0, 0, 0, 0.1), -5px 5px 15px rgba(0, 0, 0, 0.1);
}

.custom-item {
  padding: 10px;
  text-align: center;
}


