.accordion-image-container {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 30px;
}
@media (max-width: 768px) {
  .accordion-image-container {
    flex-direction: column;
  }
}

.accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.accordion-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #f5f5f5;
  cursor: pointer;
}
.accordion-item:first-child {
  border-radius: 20px 20px 0 0;
}
.accordion-item:last-child {
  border-radius: 0 0 20px 20px;
}
.accordion-item:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
}
.accordion-item:hover .accordion-header h3 {
  color: #0194D3;
}
.accordion-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, transparent, #747474, transparent);
  pointer-events: none;
}
.accordion-item.active {
  z-index: 9;
  border-radius: 20px;
  background-color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.accordion-item.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
}
.accordion-item.active .accordion-header {
  padding-bottom: 10px;
}
.accordion-item.active .accordion-header h3 {
  color: #0194D3;
  margin-bottom: 0;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  padding: 10px 30px;
  padding-bottom: 30px;
}
.accordion-header {
  padding: 20px;
}
.accordion-header h3 {
  color: rgb(0.7594339623, 112.3962264151, 160.2405660377);
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: rgba(0, 0, 0, 0.49);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  padding: 0;
  margin: 20px 10px;
}
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 30px;
}
.accordion-content-inner {
  padding-bottom: 10px;
}

.image-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
  overflow: hidden;
  min-height: 524px;
  border-radius: 20px;
}
.image-display .display-image {
  max-width: 100%;
  max-height: 524px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.image-display .display-image.loaded {
  opacity: 1;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .image-display {
    min-height: 200px;
    order: -1;
  }
}

.line-break-gradient {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.line-break-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, transparent, #C7C7C7, transparent);
  pointer-events: none;
}
