.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px;
    background: #eef7fc;
}

.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 0px 1px #40b8cc);
}

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.service-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
        grid-template-columns: 1fr;
    }
}
