/* Ajoute ici ton CSS personnalisé */
body {
    background-color: #f9f9f9;
}
.hero-section {
  background-color: #e7e9ed;
  padding: 4rem 1rem;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c2331;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.hero-section h1 span {
  color: #1f8f3f;
}
.hero-section h1 span span {
  color: #c9a81d;
}
.hero-section a {
  display: inline-block;
  background-color: #1f8f3f;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.category-image {
  border-radius: 1rem;
  width: 100%;
  height: 16rem;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.category-image:hover {
  transform: scale(1.03);
}

.category-name {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1c2331;
  transition: color 0.3s ease;
}
.category-name:hover {
  color: #1f8f3f;
}

.swiper-button-next, .swiper-button-prev {
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 18px;
  color: #1c2331;
}

