.carousel-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}
.carousel-dots span {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}
.carousel-dots .active {
  background-color: #717171;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.card {
  flex: 1 1 22%;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
}

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

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.card-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.card-button {
  display: inline-block;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-dark-blue);
  border: 1px solid var(--color-dark-blue);
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s;
  margin-bottom: 2rem;
}

.card-button:hover {
  background-color: var(--color-dark-blue);
  color: white;
}
