/* Style Général */
#cleaning-services {
    background-color: #f7f7f7;
    padding: 50px 20px;
  }
  
  
  /* Service Blocks */
  .service-block {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service-block:hover {
    transform: translateY(-5px);
  }
  
  .service-image {
    width: 30%;
    border-radius: 8px;
    margin-right: 20px;
  }
  
  .content h3 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .content ul {
    list-style: none;
    padding: 0;
    color: #555;
  }
  
  .content ul li {
    margin: 5px 0;
  }
  
  .content ul li i {
    color: #4CAF50;
    margin-right: 10px;
  }
  
  .cta-section {
    background: #4CAF50;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
  }
  
  .cta-section a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .cta-section a:hover {
    text-decoration: none;
  }
  