/* Hero Section Styles */
.hero-section {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.hero-text h1 {
  font-weight: 700;
  color: #28a745;
  font-size: 3rem;
}

.hero-text p {
  color: #333;
  font-size: 1.2rem;
}

.hero-logo {
  height: 80px;
  margin-bottom: 20px;
}

.hero-img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/* Card Vendeur Styles */
.card-vendeur {
  border: 1px solid #28a745;
  transition: 0.3s ease;
}

.card-vendeur:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Button Styles */
.btn-outline-success:hover {
  color: white !important;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .hero-section {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-img {
    margin-top: 30px;
  }
}
/* Cards produits */
.card {
    transition: transform 0.3s;
    margin-bottom: 20px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}