
/* Blog Post Detail Styles */
.service-entry-img img,
.service-entry-content img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-entry-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-entry-content h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.service-entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem; /* Slightly larger for better readability on mobile */
}

.service-entry-content ul.benefit-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-entry-content ul.benefit-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

@media (max-width: 768px) {
    .page-service-single {
        padding-top: 40px;
    }
    
    .service-entry-content h2 {
        font-size: 1.5rem;
    }
    
    .service-entry-content .lead {
        font-size: 1.15rem;
    }
}
