.services-section {
    position: relative;
    padding: 100px 0 120px;
    background-position: 50% 50%;
    background-size: auto;
    background-repeat: repeat-x;
    background-image: url('../img/linee.png');
    overflow: hidden;
  }
  
  .services-container {
    max-width: 82.2%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .services-header {
    margin-bottom: 70px;
  }
  
  .services-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-dark);
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .services-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--primary-dark);
  }
  
  .services-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .service-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }
  
  .service-item.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .service-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 25px;
  }
  
  .service-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .service-item:hover .service-image {
    transform: scale(1.05);
  }
  
  .service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .service-item:hover .service-icon {
    transform: translateY(-5px);
  }
  
  .icon-image {
    width: 24px;
    height: 24px;
  }
  
  .service-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
  }
  
  .service-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: #666;
  }
  
  @media (max-width: 1024px) {
    .services-section {
      padding: 80px 0 100px;
    }
    
    .services-title {
      font-size: 42px;
    }
    
    .service-image {
      height: 220px;
    }
  }
  
  @media (max-width: 768px) {
    .services-section {
      padding: 60px 0 80px;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    
    .services-title {
      font-size: 36px;
    }
    
    .service-image {
      height: 200px;
    }
    
    .service-icon {
      width: 45px;
      height: 45px;
    }
    
    .icon-image {
      width: 20px;
      height: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .services-section {
      padding: 50px 0 70px;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .services-title {
      font-size: 32px;
    }
    
    .services-label {
      padding-left: 30px;
    }
    
    .services-label::before {
      width: 20px;
    }
    
    .service-image {
      height: 220px;
    }
  }