body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}
  
header {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
}
  
.logo {
    width: 180px;
}
  
.site {
    position: relative;
    text-align: center;
    color: #fff;
    background: url('img/vip-garagiste-768x450.webp') no-repeat center center/cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.site-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}
  
.site h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
  
.site p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
  
.cta-button {
    padding: 15px 30px;
    background-color: #ff7f50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
}
  
.cta-button:hover {
    background-color: #e76a3a;
}
  
.text-block {
    padding: 30px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.produits {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}
  
.produit-card {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 30%;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
  
.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
  
.produit-card img {
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}
  
.produit-card h3 {
    font-weight: bold;
}
  
.produit-card p {
    font-weight: normal;
    color: #444;
}
  
.produit-card a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
  
.produit-card a:hover {
    color: #333;
}
  
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
}
  
footer a {
    color: #ff7f50;
    text-decoration: none;
}
  
footer a:hover {
    text-decoration: underline;
}
  