.comfort-block {
  padding-top: 1.5rem;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.comfort-block.open {
  padding-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.comfort-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.comfort-block.open .comfort-content {
  max-height: 400px;
  opacity: 1;
}
.comfort-toggle img {
  transition: transform 0.3s ease;
}
.comfort-block.open .comfort-toggle img {
  transform: rotate(180deg);
}

.solutions-block {
  padding-top: 1.5rem;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.solutions-block.open {
  padding-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.solutions-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.solutions-block.open .solutions-content {
  max-height: 400px;
  opacity: 1;
}
.solutions-toggle img {
  transition: transform 0.3s ease;
}
.solutions-block.open .solutions-toggle img {
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .comfort-block {
    padding-top: 0.75rem;
  }
  .comfort-block.open {
    padding-bottom: 0.75rem;
  }
  .solutions-block {
    padding-top: 0.75rem;
  }
  .solutions-block.open {
    padding-bottom: 0.75rem;
  }
}
