.services-wrapper {
   padding-bottom: 60px;
    background-color: #fff;
}

Section 2 styles 
#section-1 {
    display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
   padding: 40px 20px;
   background-color: #f9f9f9;
}

#section-1 > div {
    background-color: #eaf8ff;
 border-radius: 12px;*/
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   overflow: hidden;
  text-align: center;
   width: 30%;
   min-width: 250px;
  max-width: 300px;
   transition: box-shadow 0.3s ease;
}

#section-1 > div:hover {
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#section-1 img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

#section-1 p {
    margin: 15px 10px;
    font-size: 1rem;*/
    font-weight: 600;*/
    color: #333;*/
}



