.vs-service-boxes-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
} .vs-service-box {
position: relative;
display: flex;
justify-content: center; 
align-items: center;    
text-align: center;
background-size: cover;
background-position: center;
border-radius: 12px;
min-height: 300px;
padding: 20px;
color: #3a4a19; 
transition: transform 0.3s ease;
overflow: hidden;
text-decoration: none !important; 
} .vs-service-box::before {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.7); 
border-radius: 12px;
z-index: 1;
transition: background 0.3s ease;
}    .vs-service-content {
position: relative;
z-index: 2; 
padding: 15px;
max-width: 90%;
margin: 0 auto;
text-align: center;
transition: color 0.3s ease;
color: #413f0f;
background: transparent; 
font-family: Roboto;
}     .vs-service-content h3 {
color: #413f0f;
font-weight: 700;
font-size: 1.5rem;
margin-bottom: 10px;
letter-spacing: 1px;
font-family: Roboto;
}
.vs-service-content p {
font-weight: 600;
font-size: 1rem;
line-height: 1.5;
letter-spacing: 0.6px;
} .vs-service-box-2 { width: calc(50% - 10px); }   
.vs-service-box-3 { width: calc(33.333% - 13px); } @media(min-width: 1200px) {
.vs-service-box:nth-child(n) {
flex: 1 1 calc(33.333% - 13px);
}
} @media(max-width: 768px) {
.vs-service-box {
flex: 1 1 100%;
}
}