<style>
.sejour-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin: 35px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-left: 6px solid #E8A941;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sejour-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.sejour-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sejour-header h3 {
  margin: 0;
  font-weight: 600;
  color: #262626;
}

.badge {
  background: #262626;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
}

.sejour-description {
  margin: 15px 0;
  color: #555;
  font-size: 15px;
}

.btn-acces {
  background: #E8A941;
  color: #262626;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-acces:hover {
  background: #d8962f;
  transform: scale(1.05);
}

.contenu-sejour {
  display: none;
  margin-top: 20px;
}

.contenu-sejour img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
</style>