
.cssl-section {
  max-width: 1200px;
  margin: auto;
  position: relative;
  padding: 40px;
  background: #f7f7f7;
}

.cssl-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cssl-section p {
  max-width: 700px;
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.card {
  min-width: 33.3333%;
  box-sizing: border-box;
  padding: 10px;
}

.card-inner {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.card-link {
  color: #b19755;
  font-weight: bold;
  text-decoration: none;
}

.nav-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.nav-buttons button {
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 18px;
}

.nav-buttons .next {
  background-color: #b19755;
  color: white;
}

@media(max-width: 768px) {
  .card {
    min-width: 100%;
  }
}
