.carousel-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0 60px 0;
  justify-content: center;
}
.carousel-container {
  position: relative;
  width: 420px;
  min-height: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(44,62,80,0.08);
  padding: 36px 32px 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.carousel-slide {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeIn 0.5s;
}
.carousel-slide.active {
  display: flex;
}
.carousel-slide h3 {
  font-size: 1.3rem;
  color: #1ABC9C;
  margin-bottom: 12px;
}
.carousel-slide p {
  font-size: 1.08rem;
  color: #2c3e50;
  margin-bottom: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #eee0c3;
  border: none;
  color: #2c3e50;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }
.carousel-btn:hover { background: #1ABC9C; color: #fff; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eee0c3;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: #1ABC9C; }
.carousel-img-fixed {
  width: 340px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.08);
  margin-top: 18px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
