/* --- Editor Content Area --- */
/* This targets standard HTML tags coming from your editor without needing classes */
.editor-content { background: white; border-radius: 20px; padding: 40px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.editor-content h1 { color: #1e3a8a;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 3px solid #f0f7ff;
    display: inline-block;
    padding-bottom: 10px; }
.editor-content h4 { color: #1e3a8a; font-weight: 600; margin-top: 30px; }
.editor-content p { margin-bottom: 1.5rem; line-height: 1.8; }
.editor-content ul { margin-bottom: 1.5rem; }
.editor-content li { margin-bottom: 8px; }

/* --- Service Blocks --- */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }

.service-body { padding: 20px; flex-grow: 1; }
.service-body h5 { font-weight: 700; color: #1e3a8a; font-size: 1.1rem; margin-bottom: 10px; }
.service-body p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

.service-footer { padding: 0 20px 20px; display: flex; align-items: center; justify-content: space-between; }
.read-more { font-size: 0.8rem; font-weight: 600; color: #1e3a8a; text-decoration: none; }
.btn-book-sm { font-size: 0.7rem; padding: 6px 14px; border-radius: 50px; background: #1e3a8a; color: white; text-decoration: none; font-weight: 600; text-transform: uppercase; }
        
@media (max-width: 768px) {
    .editor-content { padding: 25px 20px; }
}