/* Container Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Section General Styles */
  section {
    padding: 80px 0;
    background: #f9f9f9; /* Fond uniforme */
    overflow: hidden;
  }
  
  section#about {
    background: #f9f9f9; /* Même fond que la page */
  }
  
  .section-header {
    margin-bottom: 50px;
    text-align: center;
    background-image: url("../img/call-to-action-bg.jpg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    padding: 60px 20px;
    overflow: hidden;
  }
  
  .section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Reduced opacity for less visible background */
    z-index: 1;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    margin-bottom: 15px;
  }
  
  .section-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    z-index: 2;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    color : whitesmoke;
  }
  
  
  /* Service Block Styles */
  .service-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .service-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-block .icon {
    font-size: 3.5rem;
    color: #3498db;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .service-block .content {
    flex: 1;
  }
  
  .service-block .content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .service-block .content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Homogeneous Background for Services Section */
  section#services {
    background: #ffffff; /* Même fond que la section précédente */
    padding: 80px 0;
  }
  
  #services .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
 #header {
    background: black;
 }
 #blank {
    background: white;
 }
  @media (min-width: 768px) {
    #services .container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-block {
      flex-direction: column;
      text-align: center;
      padding: 30px;
    }
  
    .service-block .icon {
      margin-bottom: 20px;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .section-header p {
      font-size: 1rem;
    }
  }
  