.thumbnail img {
    height: 100px;
}

@media (max-width: 768px) {
    .thumbnail img {
        height: unset;
    }
}

/* Related Services Styling */
.related-services {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.related-service-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.related-service-item:last-child {
    margin-bottom: 0;
}

/* Only target service images within related services */
.related-service-item .service-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.related-service-item .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info .title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.service-info .title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-info .title a:hover {
    color: #007bff;
}

.service-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .related-services {
        padding: 20px;
    }
    
    .related-service-item {
        padding: 12px;
    }
    
    .related-service-item .service-image {
        width: 60px;
        height: 60px;
        margin-right: 12px;
    }
    
    .service-info .title {
        font-size: 15px;
    }
    
    .service-info p {
        font-size: 13px;
    }
}