.services-intro {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: auto;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 8px;
    object-fit: cover;
    background-color: #ebf5fd;
}

.service-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #222831;
}

.service-card p {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: #444;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.service-card li {
    margin-bottom: 4px;
}

.service-card li::before {
    content: "✔ ";
    font-weight: bold;
}