.services-section {
    padding: 40px 0;
    background: #f8f9fc;
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: darkgoldenrod;
}

.services-carousel .service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /*background: #fff;
    border-radius: 8px;
    overflow: hidden;*/
}

    .services-carousel .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

    .service-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
    }

.service-content {
    padding: 24px;
    min-height:300px;
}

    .service-content h3 {
        font-size: 1.35rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
    }

    .service-content p {
        margin-bottom: 10px;
        color: #555;
        line-height: 1.5;
    }

.insurance-list a {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 6px;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

    .insurance-list a:hover {
        text-decoration: underline;
    }

.btn-primary {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

    .btn-primary:hover {
        background: #005fcc;
    }

/* Optional: make all text consistent */
.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    margin-bottom: 10px;
}