
  
  /* Section Styles */
  .section-about {
    padding: 4rem 15rem;
    background: linear-gradient(to bottom right, #f9fafb, #ffffff, #f3f4f6);
  }
  
  /* Container */
  .container-about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Grid */
  .grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (max-width: 768px) { /* Ajustez la largeur selon vos besoins */
    .grid-about {
      grid-template-columns: 1fr; /* Une seule colonne */
    }

    .section-about {
        padding: 4rem 1.25rem;
      }
  }
  
  /* Text Column */
  .text-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .title-about {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
  }
  
  .description-about {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: bold;
  }
  
  .icon-about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: #c6f6d5;
    color: #38a169;
    border-radius: 50%;
    font-weight: bold;
  }
  
  /* Image Grid */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .image-wrapper {
    position: relative;
    overflow: hidden;
    /* border-radius: 0.75rem; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .image-wrapper.large {
    grid-column: span 2;
  }
  
  .image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
  }
  
  .image-wrapper:hover .image {
    transform: scale(1.1);
  }
  
  .overlay-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .image-wrapper:hover .overlay-about {
    opacity: 1;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
    }
  
    .title {
      font-size: 2rem;
    }
  }
  
 /* Production*/
 
 .production-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f7f7f7, #ffffff, #f7f7f7);
  }
  

  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .grid-production {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .step {
    text-align: center;
  }
  
  .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .icon-container svg{
    width: 50px;
    height: 50px;
    color: white;
  }
  .icon-container.green { background-color: #38a169; }
  .icon-container.yellow { background-color: #d69e2e; }
  .icon-container.blue { background-color: #3182ce; }
  .icon-container.red { background-color: #e53e3e; }
  
  .icon-container:hover {
    transform: scale(1.1);
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #444;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
  }
  
  /*  */
  /* quality */
  #quality {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
  }
  
  .container-quality {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .title-quality {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    color: #374151;
    margin-bottom: 3rem;
  }
  
  /* Grid layout for cards */
  .grid-quality {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .grid-quality {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Card Style */
  .card-quality {
    background-color: #f5f5f5; /* beige color */
    padding: 2rem;
    border-radius: 0.5rem;
  }
  
  .icon-container {
    width: 4rem;
    height: 4rem;
    background-color: #374151; /* dark gray */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .card-description {
    color: #374151;
  }
  
  /* FontAwesome icons styling */
  .icon-container .fas {
    font-size: 2rem;
    color: white;
  }
  /*  */